本文整理汇总了PHP中STemplate::assign方法的典型用法代码示例。如果您正苦于以下问题:PHP STemplate::assign方法的具体用法?PHP STemplate::assign怎么用?PHP STemplate::assign使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类STemplate
的用法示例。
在下文中一共展示了STemplate::assign方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: while
}
$uppercounter = $currentpage + 1;
while ($uppercounter < $currentpage + 10 - $counter && $uppercounter <= $toppage) {
$uppercounter++;
}
if ($currentpage < $toppage) {
STemplate::assign('tnp', $thenextpage);
}
}
}
$eurl = base64_encode("/?page=" . $page);
STemplate::assign('eurl', $eurl);
}
$posts = getTags($posts);
$posts = countComments($posts);
$posts = getHash($posts);
//TEMPLATES BEGIN
STemplate::assign('showkeya', 1);
STemplate::assign('hotkeys', 1);
STemplate::assign('showkeys', 1);
STemplate::assign('homepage', 1);
STemplate::assign('menu', 1);
STemplate::assign('posts', $posts);
STemplate::assign('popHashes', $popHashes);
STemplate::display('header.tpl');
STemplate::display($templateselect);
STemplate::display('footer.tpl');
//TEMPLATES END
$executequery1->Close();
$executequery2->Close();
$conn->Close();
示例2: mysql_real_escape_string
$executequery = $conn->execute($query);
$r = $executequery->getarray();
STemplate::assign('r', $r);
if ($category > 0) {
$query = "SELECT seo,name FROM categories WHERE CATID='" . mysql_real_escape_string($category) . "' limit 1";
$executequery = $conn->execute($query);
$cat_name = $executequery->fields['name'];
$cat_seo = $executequery->fields['seo'];
STemplate::assign('cat_seo', $cat_seo);
STemplate::assign('cat_name', $cat_name);
}
} else {
$error = $lang['140'];
}
} else {
$error = $lang['139'];
}
}
if ($error == "") {
$theme = "view.tpl";
} else {
$theme = "empty.tpl";
}
//TEMPLATES BEGIN
STemplate::assign('viewpage', 1);
STemplate::assign('error', $error);
STemplate::assign('message', $message);
STemplate::display('header.tpl');
STemplate::display($theme);
STemplate::display('footer.tpl');
//TEMPLATES END
示例3: Copyright
<?php
/**************************************************************************************************
| Gag Clone Script
| http://www.gagclonescript.com
| webmaster@gagclonescript.com
|
|**************************************************************************************************
|
| By using this software you agree that you have read and acknowledged our End-User License
| Agreement available at http://www.gagclonescript.com/eula.html and to be bound by it.
|
| Copyright (c) GagCloneScript.com. All rights reserved.
|**************************************************************************************************/
include "include/config.php";
include "include/functions/import.php";
$thebaseurl = $config['baseurl'];
$templateselect = "rules.tpl";
$pagetitle = $lang['304'];
STemplate::assign('pagetitle', $pagetitle);
$lng = $_SESSION['language'] == 'en' ? '' : '_jp';
STemplate::assign('lng', $lng);
//TEMPLATES BEGIN
STemplate::assign('small_scriptolution', "1");
STemplate::assign('error', $error);
STemplate::display('header.tpl');
STemplate::display($templateselect);
STemplate::display('footer.tpl');
//TEMPLATES END
示例4: while
}
$uppercounter = $currentpage + 1;
while ($uppercounter < $currentpage + 10 - $counter && $uppercounter <= $toppage) {
$uppercounter++;
}
if ($currentpage < $toppage) {
STemplate::assign('tnp', $thenextpage);
}
}
}
$eurl = base64_encode("/new?page=" . $page);
STemplate::assign('eurl', $eurl);
}
//$posts = getTags($posts);
//$posts = countComments($posts);
//$posts = getHash($posts);
$posts = getHashCountGetComments($posts);
STemplate::assign('posts', $posts);
//TEMPLATES BEGIN
STemplate::assign('showkeya', 1);
STemplate::assign('hotkeys', 1);
STemplate::assign('showkeys', 1);
STemplate::assign('pagetitle', $lang['274']);
STemplate::assign('menu', 3);
STemplate::display('header.tpl');
STemplate::display($templateselect);
STemplate::display('footer.tpl');
//TEMPLATES END
//$executequery1->Close();
//$executequery2->Close();
//$conn->Close();
示例5: stripslashes
$sendername = $config['site_name'];
$from = $config['site_email'];
$subject = $lang['203'] . " " . $sendername;
$sendmailbody = stripslashes($email3) . ",<br><br>";
$sendmailbody .= $lang['203'] . " " . $sendername . "<br>";
$sendmailbody .= $lang['205'] . "<br>";
$sendmailbody .= "<a href=" . $config['baseurl'] . ">" . $config['baseurl'] . "</a><br><br>";
$sendmailbody .= $lang['206'] . ",<br>" . stripslashes($sendername);
mailme($sendto, $sendername, $from, $subject, $sendmailbody, $bcc = "");
}
if ($email4 != "") {
$sendto = $email4;
$sendername = $config['site_name'];
$from = $config['site_email'];
$subject = $lang['203'] . " " . $sendername;
$sendmailbody = stripslashes($email4) . ",<br><br>";
$sendmailbody .= $lang['203'] . " " . $sendername . "<br>";
$sendmailbody .= $lang['205'] . "<br>";
$sendmailbody .= "<a href=" . $config['baseurl'] . ">" . $config['baseurl'] . "</a><br><br>";
$sendmailbody .= $lang['206'] . ",<br>" . stripslashes($sendername);
mailme($sendto, $sendername, $from, $subject, $sendmailbody, $bcc = "");
}
$msg = $lang['202'];
}
}
STemplate::assign('pagetitle', $lang['156']);
STemplate::assign('error', $error);
STemplate::assign('msg', $msg);
STemplate::display('header4.tpl');
STemplate::display('invite_friends.tpl');
STemplate::display('footer.tpl');
示例6: count
if ($page == "") {
$page = "1";
}
$currentpage = $page;
STemplate::assign('page', $page);
if ($page >= 2) {
$pagingstart = ($page - 1) * $config['items_per_page'];
} else {
$pagingstart = "0";
}
$query1 = "SELECT count(*) as total from posts A, members B where A.active='1' AND A.USERID=B.USERID AND A.phase>'1' order by A.htime desc limit {$config['maximum_results']}";
$query2 = "SELECT A.*, B.username from posts A, members B where A.active='1' AND A.USERID=B.USERID AND A.phase>'1' order by A.htime desc limit {$pagingstart}, {$config['items_per_page']}";
$executequery1 = $conn->Execute($query1);
$totalvideos = $executequery1->fields['total'];
if ($totalvideos > 0) {
if ($executequery1->fields['total'] <= $config[maximum_results]) {
$total = $executequery1->fields['total'];
} else {
$total = $config[maximum_results];
}
$toppage = ceil($total / $config[items_per_page]);
if ($page <= $toppage) {
$executequery2 = $conn->Execute($query2);
$posts = $executequery2->getrows();
$posts = getTags($posts);
$posts = countComments($posts);
$posts = getHash($posts);
STemplate::assign('posts', $posts);
STemplate::display('posts_bit_more.tpl');
}
}
示例7: group_tags
$rs = $conn->execute($sql);
if ($rs->recordcount() > 0) {
$vdo = $rs->getrows();
}
$start_num = $startfrom + 1;
$end_num = $startfrom + $rs->recordcount();
}
$page_link = "";
for ($k = 1; $k <= $tpage; $k++) {
$page_link .= "<a href='uvideos.php?UID={$_REQUEST['UID']}&page={$k}&type={$_REQUEST['type']}'>{$k}</a> ";
}
//END PAGING
STemplate::assign('err', $err);
STemplate::assign('msg', $msg);
STemplate::assign('page', $page);
STemplate::assign('start_num', $start_num);
STemplate::assign('end_num', $end_num);
STemplate::assign('page_link', $page_link);
STemplate::assign('total', $total);
STemplate::assign('answers', $vdo);
if ($my_friends != "") {
$kwords = group_tags($sql);
}
STemplate::assign('vtags', $kwords);
STemplate::assign('head_bottom', "friendlinks.tpl");
//STemplate::assign('head_bottom_add',"viewuserlinks.tpl");
STemplate::display('head1.tpl');
STemplate::display('err_msg.tpl');
STemplate::display('search.tpl');
STemplate::display('fvideos.tpl');
STemplate::display('footer.tpl');
示例8: group_tags
$sql = "select * from video as v, playlist as f WHERE f.UID={$_GET['UID']} and f.VID=v.VID limit {$startfrom}, {$config['items_per_page']}";
} else {
$sql = "select * from video as v, playlist as f WHERE f.UID={$_SESSION['UID']} and f.VID=v.VID limit {$startfrom}, {$config['items_per_page']}";
}
$rs = $conn->execute($sql);
if ($rs->recordcount() > 0) {
$vdo = $rs->getrows();
}
$start_num = $startfrom + 1;
$end_num = $startfrom + $rs->recordcount();
$page_link = "";
for ($k = 1; $k <= $tpage; $k++) {
$page_link .= "<a href='my_playlist.php?UID={$_GET['UID']}&page={$k}&type={$_REQUEST['type']}'>{$k}</a> ";
}
//END PAGING
STemplate::assign('err', $err);
STemplate::assign('msg', $msg);
STemplate::assign('page', $page);
STemplate::assign('start_num', $start_num);
STemplate::assign('end_num', $end_num);
STemplate::assign('page_link', $page_link);
STemplate::assign('total', $total);
STemplate::assign('answers', $vdo);
$mytags = group_tags($sql);
STemplate::assign('mytags', $mytags);
STemplate::assign('head_bottom', "blank.tpl");
STemplate::assign('head_bottom_add', "viewuserlinks.tpl");
STemplate::display('head1.tpl');
STemplate::display('err_msg.tpl');
STemplate::display('uplaylist.tpl');
STemplate::display('footer.tpl');
示例9:
$yessel = "selected";
} else {
$nosel = "selected";
}
$featured_box = "<option value='yes' {$yessel}>Yes</option>\n <option value='no' {$nosel}>No</option>";
STemplate::assign('featured_box', $featured_box);
if ($video[0]['be_comment'] == "yes") {
$yessel = "selected";
} else {
$nosel = "selected";
}
$comment_box = "<option value='yes' {$yessel}>Yes</option>\n <option value='' {$nosel}>No</option>";
STemplate::assign('comment_box', $comment_box);
if ($video[0]['be_rated'] == "yes") {
$yessel = "selected";
} else {
$nosel = "selected";
}
$rate_box = "<option value='yes' {$yessel}>Yes</option>\n <option value='' {$nosel}>No</option>";
STemplate::assign('rate_box', $rate_box);
if ($video[0]['embed'] == "enabled") {
$yessel = "selected";
} else {
$nosel = "selected";
}
$embed_box = "<option value='enabled' {$yessel}>Enable</option>\n <option value='' {$nosel}>Disable</option>";
STemplate::assign('embed_box', $embed_box);
Stemplate::assign('video', $video[0]);
Stemplate::assign('err', $err);
Stemplate::assign('msg', $msg);
STemplate::display("siteadmin/audioedit.tpl");
示例10:
<?php
include "../include/config.php";
include "leftmenu/headlinks.txt.php";
STemplate::assign('HeadLinks', $HeadLinksArray);
STemplate::display('siteadmin/framehead.tpl');
示例11: header
$sql = "update group_tps set title='{$title}', approved='{$approved}' where TID={$TID}";
$conn->execute($sql);
header("Location: groupposts.php?gid={$gid}&TID={$TID}");
}
}
if ($_POST['pupdate']) {
if ($post == "") {
$err = "Enter details for this comments";
} else {
$sql = "update group_tps_post set post='{$post}' where PID={$PID}";
$conn->execute($sql);
header("Location: groupposts.php?gid={$gid}&TID={$TID}");
}
}
if ($_GET['action'] == "pdel" and $_GET['PID'] != "") {
$sql = "delete from group_tps_post where PID={$PID}";
$conn->execute($sql);
header("Location: groupposts.php?gid={$gid}&TID={$TID}");
}
$sql = "select * from group_tps where TID={$TID}";
$rs = $conn->execute($sql);
$topic = $rs->getrows();
STemplate::assign('topic', $topic[0]);
$sql = "select * from group_tps_post where TID='{$TID}' order by PID asc";
$rs1 = $conn->execute($sql);
$post = $rs1->getrows();
STemplate::assign('post', $post);
STemplate::assign('total_post', count($post));
Stemplate::assign('err', $err);
Stemplate::assign('msg', $msg);
STemplate::display("siteadmin/groupposts.tpl");
示例12: header
$conn->execute($sql);
}
if ($err == "") {
header("location: settings.php?msg=System settings updated successfully");
}
}
if ($config['enable_package'] == 'yes') {
$yessel = "selected";
} else {
$nosel = "selected";
}
$ops = "<option value='yes' {$yessel}>Enable Package</option>\n <option value='no' {$nosel}>Free Service</option>";
STemplate::assign("service_ops", $ops);
if ($config['payment_method'] != "") {
$method = explode("|", $config['payment_method']);
while (list($k, $v) = each($method)) {
if ($v == "Paypal") {
$pay_checked = "Checked";
} elseif ($v == "Authorize.net") {
$aut_checked = "Checked";
}
}
}
$payment_method_ops = "<input type=checkbox name='method[]' value='Paypal' {$pay_checked}> Paypal<br>\n <input type=checkbox name='method[]' value='Authorize.net' {$aut_checked}> Authorize.net";
STemplate::assign('payment_method_ops', $payment_method_ops);
if ($_REQUEST[msg] != "") {
$msg = $_REQUEST[msg];
}
Stemplate::assign('err', $err);
Stemplate::assign('msg', $msg);
STemplate::display("siteadmin/settings.tpl");
示例13: elseif
$nextpage = $page + 1;
$prevpage = $page - 1;
$prevlink = "<a href='packages.php?page={$prevpage}&sort={$sort}'><img src='../images/icon/previous.gif' title='Previous' alt='Previous' border='0' style='vertical-align: middle;'></a>";
$nextlink = "<a href='packages.php?page={$nextpage}&sort={$sort}'><img src='../images/icon/next.gif' title='Next' alt='Next' border='0' style='vertical-align: middle;'></a>";
if ($page == $tpage) {
$link .= " | {$prevlink}";
} elseif ($tpage > $page && $page > 1) {
$link .= " | {$prevlink} {$nextlink}";
} elseif ($tpage > $page && $page <= 1) {
$link .= " | {$nextlink}";
}
}
$sql = "SELECT * from package {$query} limit {$startfrom}, {$listing_per_page}";
$rs = $conn->Execute($sql);
$total = $rs->recordcount() + 0;
$packs = $rs->getrows();
STemplate::assign('link', $link);
STemplate::assign('grandtotal', $grandtotal + 0);
STemplate::assign('total', $total + 0);
STemplate::assign('page', $page + 0);
STemplate::assign('packs', $packs);
} elseif ($_REQUEST['a'] == "Search") {
if ($_REQUEST['pack_id'] != null) {
$rs = $conn->execute("select * from package where pack_id={$_REQUEST['pack_id']}");
$pack = $rs->getrows();
STemplate::assign("pack", $pack[0]);
}
}
Stemplate::assign('err', $err);
Stemplate::assign('msg', $msg);
STemplate::display("siteadmin/packages.tpl");
示例14: group_tags
$spage = $tpage;
}
$startfrom = ($page - 1) * $config[items_per_page];
$sql = "select * from audio WHERE UID={$_REQUEST['UID']} and type='{$_REQUEST['type']}' limit {$startfrom}, {$config['items_per_page']}";
$rs = $conn->execute($sql);
if ($rs->recordcount() > 0) {
$vdo = $rs->getrows();
}
$start_num = $startfrom + 1;
$end_num = $startfrom + $rs->recordcount();
$page_link = "";
for ($k = 1; $k <= $tpage; $k++) {
$page_link .= "<a href='uaudios.php?UID={$_REQUEST['UID']}&page={$k}&type={$_REQUEST['type']}'>{$k}</a> ";
}
//END PAGING
}
STemplate::assign('err', $err);
STemplate::assign('msg', $msg);
STemplate::assign('page', $page);
STemplate::assign('start_num', $start_num);
STemplate::assign('end_num', $end_num);
STemplate::assign('page_link', $page_link);
STemplate::assign('total', $total);
STemplate::assign('answers', $vdo);
$kwords = group_tags($sql);
STemplate::assign('vtags', $kwords);
STemplate::assign('head_bottom_add', "musiclinks.tpl");
STemplate::display('head1.tpl');
STemplate::display('err_msg.tpl');
STemplate::display('uaudios.tpl');
STemplate::display('footer.tpl');
示例15:
<?php
include "../include/config.php";
$active = $_GET[active];
if ($active == "Users") {
include "leftmenu/userlinks.txt.php";
}
if ($active == "Videos") {
include "leftmenu/videolinks.txt.php";
}
if ($active == "Audio") {
include "leftmenu/audiolinks.txt.php";
}
if ($active == "Channels") {
include "leftmenu/channellinks.txt.php";
}
if ($active == "Groups") {
include "leftmenu/grouplinks.txt.php";
}
if ($active == "Settings") {
include "leftmenu/settinglinks.txt.php";
}
STemplate::assign('MainLinks', $MainLinksArray);
STemplate::assign('ChildLinks', $ChildLinksArray);
STemplate::display('siteadmin/leftwebsite.tpl');