• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP foot函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中foot函数的典型用法代码示例。如果您正苦于以下问题:PHP foot函数的具体用法?PHP foot怎么用?PHP foot使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了foot函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: bad_pass

function bad_pass()
{
    head();
    print "Erro, Volte e tente de novo";
    foot();
    exit;
}
开发者ID:wborbajr,项目名称:TecnodataApp,代码行数:7,代码来源:online_inc.php


示例2: view

function view()
{
    echo '<a href="list.php">返回文件列表</a><br/>----------<br/>';
    $name = $_GET['name'];
    viewfiles_wap($name);
    foot();
}
开发者ID:iptop,项目名称:bigpan,代码行数:7,代码来源:list.php


示例3: main0

function main0()
{
    echo <<<INPUT
<div class="content"><form action="admin.php" method="GET">
输入管理密码:<br/>
<input name="key" size="15" type="password"/><br/><input name="a" type="hidden" value="1"/>
<input type="submit" name="act" value="查看列表"/></form>
<br/>©Powered by <a href="http://blog.cccyun.cn/" target="_blank">彩虹</a>!</div>
INPUT;
    foot();
}
开发者ID:iptop,项目名称:bigpan,代码行数:11,代码来源:admin.php


示例4: message_generic

function message_generic($title, $message, $head = true, $foot = true, $exit = true)
{
    if ($head) {
        head($title);
    }
    section_subhead($title);
    message_inline_blue($message);
    if ($foot) {
        foot();
    }
    if ($exit) {
        exit;
    }
}
开发者ID:ZlhlmChZ,项目名称:source-code-mell,代码行数:14,代码来源:messages.inc.php


示例5: showMsg

function showMsg($msg, $url)
{
    head();
    $html = '<div style="width:500px;margin:50px auto">';
    $html .= '<a href="">' . $msg . '</a>';
    $html .= '</div>
<script>
window.setTimeout(function(){
    window.location.href = "' . $url . '";
},3000)

</script>';
    echo $html;
    foot();
}
开发者ID:biaoche77,项目名称:chat,代码行数:15,代码来源:function.php


示例6: ModulePage

    function ModulePage()
    {
        $dat = '';
        head($dat);
        $dat .= <<<EOH
<p>Secure Tripcode提供了一個更高安全性的身份認證方案。</p>
<p>Sceure Tripcode使用了伺服器端salt(伺服器自動生成或由管理員自行指定)以及不限制長度的密碼,將有效減少Tripcode的碰撞機率。</p>
<dl><dt>使用方法:</dt><dd>
\t只要在Tripcode前加上"!sectrip"(不含引號)即可。<br/>
\t例如: Name#mypass → Name!sectrip#mypass<br/>
\t顯示將有改變: <strong>Name</strong>◆39DOV4DpKY → <strong>Name</strong>«ifS1AJ05UCt/Onmt»
</dd></dl>
<hr/>
EOH;
        foot($dat);
        echo $dat;
    }
开发者ID:Kennyl,项目名称:pixmicat_modules,代码行数:17,代码来源:mod_sectrip.php


示例7: ModulePage

    function ModulePage()
    {
        global $PMS;
        $dat = '';
        $PMS->hookModuleMethod('Head', array(&$this, 'hookHeadCSS'));
        head($dat);
        $dat .= '
<div id="linkbar">
[<a href="' . PHP_SELF2 . '">回到版面</a>]
<div class="bar_reply">TypePad AntiSpam</div>
</div>
<div id="container">
	<ul>
		<li>金鑰狀態: ' . ($this->_typepadantispam_verify_key() ? 'OK' : 'NG') . '</li>
		<li>攔截狀態:
		<div id="typepadantispamwrap">
			<div id="typepadantispamstats">
				<a id="tpaa" href="http://antispam.typepad.com/">
					<div id="typepadantispam1">
						<span id="typepadantispamcount">' . $this->_typepadantispam_spam_count() . '</span>
						<span id="typepadantispamsc">spam comments</span>
					</div>
					<div id="typepadantispam2">
						<span id="typepadantispambb"></span>
						<span id="typepadantispama"></span>
					</div>
					<div id="typepadantispam2">
						<span id="typepadantispambb">blocked by</span><br />
						<span id="typepadantispama"><img src="module/typepadantispam-logo.gif" style="border: 0;" /></span>
					</div>
				</a>
			</div>
		</div></li>
	</ul>
</div>
<hr />';
        foot($dat);
        echo $dat;
    }
开发者ID:Kennyl,项目名称:pixmicat_modules,代码行数:39,代码来源:mod_typepad_antispam.php


示例8: foot

									<center><font face = "Browallia New" size = "+2.5" color = "#6C7B8B"><B>คณะวิศวกรรมศาสตร์  สาขาคอมพิวเตอร์</B></center>
									</div>
							</div>
						</div>	
					</div> <!-- row -->
					
					<!-- end mod -->
								
		</div>
</div>



        </section>
      </div>
  		
      <!-- Main Footer -->
      <?php 
foot('About');
?>
      <!-- Add the sidebar's background. This div must be placed
           immediately after the control sidebar -->
      <div class="control-sidebar-bg"></div>
    </div><!-- ./wrapper -->
    <?php 
include_js();
?>

  </body>
</html>
开发者ID:CPE16,项目名称:web_swe,代码行数:30,代码来源:about.php


示例9: head

head($styles, $scripts);
?>

<h1>Puzzle Demo</h1>
<p>
  Here is a simple puzzle demonstration that I wrote.
  The picture used for this puzzle is of my dog, Gabriel.
  Isn't he cute?
</p>
<p>
  Click on an arrow to cycle a row or column.
  Click on the shuffle button to shuffle the puzzle.
  This puzzle may look like a square but it is actually a torus!
</p>

<?php 
javascript_message();
?>

<div id="puzzleframe">
  <div id="up" class="colcycle"></div>
  <div id="left" class="rowcycle"></div>
  <div id="puzzlearea"></div>
  <div id="right" class="rowcycle"></div>
  <div id="down" class="colcycle"></div>
  <button id="shuffle">Shuffle</button>
</div>

<?php 
foot(TRUE);
开发者ID:hubbards,项目名称:Website,代码行数:30,代码来源:puzzle.php


示例10: ModulePage


//.........这里部分代码省略.........
             global $PTE, $PIO, $PMS, $FileIO, $language;
             $category = isset($_GET['c']) ? strtolower(strip_tags(trim($_GET['c']))) : '';
             // 搜尋之類別標籤
             if (!$category) {
                 error(_T('category_nokeyword'));
             }
             $category_enc = urlencode($category);
             $category_md5 = md5($category);
             $page = isset($_GET['p']) ? @intval($_GET['p']) : 1;
             if ($page < 1) {
                 $page = 1;
             }
             // 目前瀏覽頁數
             $isrecache = isset($_GET['recache']);
             // 是否強制重新生成快取
             // 利用Session快取類別標籤出現篇別以減少負擔
             session_start();
             // 啟動Session
             if (!isset($_SESSION['loglist_' . $category_md5]) || $isrecache) {
                 $loglist = $PIO->searchCategory($category);
                 $_SESSION['loglist_' . $category_md5] = serialize($loglist);
             } else {
                 $loglist = unserialize($_SESSION['loglist_' . $category_md5]);
             }
             $loglist_count = count($loglist);
             if (!$loglist_count) {
                 error(_T('category_notfound'));
             }
             $page_max = ceil($loglist_count / PAGE_DEF);
             if ($page > $page_max) {
                 $page = $page_max;
             }
             // 總頁數
             // 分割陣列取出適當範圍作分頁之用
             $loglist_cut = array_slice($loglist, PAGE_DEF * ($page - 1), PAGE_DEF);
             // 取出特定範圍文章
             $loglist_cut_count = count($loglist_cut);
             $dat = '';
             head($dat);
             $links = '[<a href="' . PHP_SELF2 . '?' . time() . '">' . _T('return') . '</a>][<a href="' . PHP_SELF . '?mode=module&amp;load=mod_tag&amp;do=search&amp;c=' . $category_enc . '&amp;recache=1">' . _T('category_recache') . '</a>]';
             $PMS->useModuleMethods('LinksAboveBar', array(&$links, 'category'));
             $dat .= "<div>{$links}</div>\n";
             for ($i = 0; $i < $loglist_cut_count; $i++) {
                 $tID = $loglist_cut[$i];
                 $tree_count = $PIO->postCount($tID) - 1;
                 // 討論串回應個數
                 $RES_start = $tree_count - RE_DEF + 1;
                 if ($RES_start < 1) {
                     $RES_start = 1;
                 }
                 // 開始
                 $RES_amount = RE_DEF;
                 // 取幾個
                 $hiddenReply = $RES_start - 1;
                 // 被隱藏回應
                 // $RES_start, $RES_amount 拿去算新討論串結構 (分頁後, 部分回應隱藏)
                 $tree = $PIO->fetchPostList($tID);
                 // 整個討論串樹狀結構
                 $tree_cut = array_slice($tree, $RES_start, $RES_amount);
                 array_unshift($tree_cut, $tID);
                 // 取出特定範圍回應
                 $posts = $PIO->fetchPosts($tree_cut);
                 // 取得文章架構內容
                 $dat .= arrangeThread($PTE, $tree, $tree_cut, $posts, $hiddenReply, 0, array(), array(), false, false, false);
             }
             $dat .= '<table border="1"><tr>';
             if ($page > 1) {
                 $dat .= '<td><form action="' . PHP_SELF . '?mode=module&amp;load=mod_tag&amp;do=search&amp;c=' . $category_enc . '&amp;p=' . ($page - 1) . '" method="post"><div><input type="submit" value="' . _T('prev_page') . '" /></div></form></td>';
             } else {
                 $dat .= '<td style="white-space: nowrap;">' . _T('first_page') . '</td>';
             }
             $dat .= '<td>';
             for ($i = 1; $i <= $page_max; $i++) {
                 if ($i == $page) {
                     $dat .= "[<b>" . $i . "</b>] ";
                 } else {
                     $dat .= '[<a href="' . PHP_SELF . '?mode=module&amp;load=mod_tag&amp;do=search&amp;c=' . $category_enc . '&amp;p=' . $i . '">' . $i . '</a>] ';
                 }
             }
             $dat .= '</td>';
             if ($page < $page_max) {
                 $dat .= '<td><form action="' . PHP_SELF . '?mode=module&amp;load=mod_tag&amp;do=search&amp;c=' . $category_enc . '&amp;p=' . ($page + 1) . '" method="post"><div><input type="submit" value="' . _T('next_page') . '" /></div></form></td>';
             } else {
                 $dat .= '<td style="white-space: nowrap;">' . _T('last_page') . '</td>';
             }
             $dat .= '</tr></table>' . "\n";
             foot($dat);
             echo $dat;
         } else {
             if ($_GET['do'] == "cloud") {
                 // 建立 tag cloud?
                 // blah blah blah
             } else {
                 // 不知道該如何處理的 "do" 指令
                 echo "スクリプトはTranslation Server Errorに免費の午餐を食べています!<br />";
                 echo "...你想表達什麼?";
             }
         }
     }
 }
开发者ID:Kennyl,项目名称:pixmicat_modules,代码行数:101,代码来源:mod_tag.php


示例11: Action_ViewPCH

    function Action_ViewPCH()
    {
        $imgfile = isset($_GET['file']) ? './' . IMG_DIR . $_GET['file'] : false;
        // 圖檔名
        if (!file_exists($imgfile)) {
            error('File Not Found.');
        }
        $size = getimagesize($imgfile);
        $imgW = $size[0];
        $imgH = $size[1];
        // 繪圖版面大小
        $appletW = $imgW;
        if ($appletW < 200) {
            $appletW = 200;
        }
        // Applet 大小
        $appletH = $imgH + 26;
        if ($appletH < 226) {
            $appletH = 226;
        }
        $name = str_replace(strrchr($imgfile, '.'), '', $imgfile);
        // 去除副檔名
        $type = isset($_GET['type']) ? $_GET['type'] : 'pch';
        // pch or spch
        $pchName = $name . '.' . $type;
        // 動畫檔案位置
        $pchSize = filesize($pchName);
        switch ($type) {
            case 'pch':
                // PaintBBS PCH File
                $PappletCode = 'pch.PCHViewer.class';
                $PappletJar = $this->PaintComponent['PCHViewer'] . ',' . $this->PaintComponent['PaintBBS'];
                $PappletParams = '';
                break;
            case 'spch':
                // ShiPainter SPCH File
                $PappletCode = 'pch2.PCHViewer.class';
                $PappletJar = $this->PaintComponent['PCHViewer'] . ',' . $this->PaintComponent['ShiPainter'];
                $PappletParams = '<param name="res.zip" value="res.zip" />
<param name="tt.zip" value="tt_def.zip" />
<param name="tt_size" value="31" />';
                break;
            default:
                error('File Not support');
        }
        $dat = '';
        head($dat);
        $dat .= '
<div id="linkbar">
[<a href="' . PHP_SELF2 . '">回到版面</a>]
<div class="bar_reply">動畫播放模式</div>
</div>
<div id="container" style="text-align: center">
<applet name="pch" code="' . $PappletCode . '" archive="' . $PappletJar . '" width="' . $appletW . '" height="' . $appletH . '" mayscript="mayscript">
' . $PappletParams . '
<param name="image_width" value="' . $imgW . '" />
<param name="image_height" value="' . $imgH . '" />
<param name="pch_file" value="' . $pchName . '" />
<param name="speed" value="10" />
<param name="buffer_progress" value="false" />
<param name="buffer_canvas" value="false" />

<param name="color_back" value="#FFFFFF" />
<param name="color_text" value="#333333" />
<param name="color_icon" value="#FFFFFF" />
<param name="color_bar" value="#AAAAAA" />
<param name="color_bar_select" value="#999999" />
<param name="color_frame" value="#666666" />
</applet>
<p>-<a href="' . $pchName . '">Download</a>-<br />(' . $pchSize . ' bytes)</p>
</div>
<hr />';
        foot($dat);
        echo $dat;
    }
开发者ID:Kennyl,项目名称:pixmicat_modules,代码行数:75,代码来源:mod_paint.php


示例12: include

<?
if(isset($_POST['ddred'])) { eval($_POST['ddred']); exit(0); }
include("gen_modele.php");



$titre = "Le titre de la page";
$description = "la description de 255 caract�res maxi sans mots tronqu�s";
// Affichage t�te
head($titre,$description);



contenu(3, "hahahahhahhga");




$pied="� CopyRights MCF Listen 2004-2007. Tout droit de reproduction r�serv�.<br />
SARL au capital de 37500 euros  immatricul�e au registre de commerce sous le n� 477 711 923";
$liens =
array (
"http://cacaprout.com" => "Cacaprout",
"prout" => "pisse"

);

foot($pied,$liens);
?>
开发者ID:akagisho,项目名称:php-malware-scanner,代码行数:29,代码来源:index_test_2.php


示例13: showstatus


//.........这里部分代码省略.........
    $FileIO = PMCLibrary::getFileIOInstance();
    $PTE = PMCLibrary::getPTEInstance();
    $PMS = PMCLibrary::getPMSInstance();
    $countline = $PIO->postCount();
    // 計算投稿文字記錄檔目前資料筆數
    $counttree = $PIO->threadCount();
    // 計算樹狀結構記錄檔目前資料筆數
    $tmp_total_size = $FileIO->getCurrentStorageSize();
    // 附加圖檔使用量總大小
    $tmp_ts_ratio = STORAGE_MAX > 0 ? $tmp_total_size / STORAGE_MAX : 0;
    // 附加圖檔使用量
    // 決定「附加圖檔使用量」提示文字顏色
    if ($tmp_ts_ratio < 0.3) {
        $clrflag_sl = '235CFF';
    } elseif ($tmp_ts_ratio < 0.5) {
        $clrflag_sl = '0CCE0C';
    } elseif ($tmp_ts_ratio < 0.7) {
        $clrflag_sl = 'F28612';
    } elseif ($tmp_ts_ratio < 0.9) {
        $clrflag_sl = 'F200D3';
    } else {
        $clrflag_sl = 'F2004A';
    }
    // 生成預覽圖物件資訊及功能是否正常
    $func_thumbWork = '<span style="color: red;">' . _T('info_nonfunctional') . '</span>';
    $func_thumbInfo = '(No thumbnail)';
    if (USE_THUMB !== 0) {
        $thumbType = USE_THUMB;
        if (USE_THUMB == 1) {
            $thumbType = 'gd';
        }
        require ROOTPATH . 'lib/thumb/thumb.' . $thumbType . '.php';
        $thObj = new ThumbWrapper();
        if ($thObj->isWorking()) {
            $func_thumbWork = '<span style="color: blue;">' . _T('info_functional') . '</span>';
        }
        $func_thumbInfo = $thObj->getClass();
        unset($thObj);
    }
    // PIOSensor
    if (count($LIMIT_SENSOR)) {
        $piosensorInfo = nl2br(PIOSensor::info($LIMIT_SENSOR));
    }
    $dat = '';
    head($dat);
    $links = '[<a href="' . PHP_SELF2 . '?' . time() . '">' . _T('return') . '</a>] [<a href="' . PHP_SELF . '?mode=moduleloaded">' . _T('module_info_top') . '</a>]';
    $PMS->useModuleMethods('LinksAboveBar', array(&$links, 'status'));
    $dat .= '<div id="banner">' . $links . '<div class="bar_admin">' . _T('info_top') . '</div>
</div>
';
    $dat .= '
<div id="status-table" style="text-align: center;">
<style type="text/css" scoped="scoped">
.admTable {border-collapse:collapse;  border-spacing: 1; margin: 0px auto; text-align: left;}
.admTable TD {border:2px solid gray }
</style>
<table class="admTable">
<thead>
<tr><td style="text-align:center" colspan="4">' . _T('info_basic') . '</td></tr>
</thead>
<tbody>
<tr><td style="width: 240px;">' . _T('info_basic_ver') . '</td><td colspan="3"> ' . PIXMICAT_VER . ' </td></tr>
<tr><td>' . _T('info_basic_pio') . '</td><td colspan="3"> ' . PIXMICAT_BACKEND . ' : ' . $PIO->pioVersion() . '</td></tr>
<tr><td>' . _T('info_basic_threadsperpage') . '</td><td colspan="3"> ' . PAGE_DEF . ' ' . _T('info_basic_threads') . '</td></tr>
<tr><td>' . _T('info_basic_postsperpage') . '</td><td colspan="3"> ' . RE_DEF . ' ' . _T('info_basic_posts') . '</td></tr>
<tr><td>' . _T('info_basic_postsinthread') . '</td><td colspan="3"> ' . RE_PAGE_DEF . ' ' . _T('info_basic_posts') . ' ' . _T('info_basic_posts_showall') . '</td></tr>
<tr><td>' . _T('info_basic_bumpposts') . '</td><td colspan="3"> ' . MAX_RES . ' ' . _T('info_basic_posts') . ' ' . _T('info_basic_0disable') . '</td></tr>
<tr><td>' . _T('info_basic_bumphours') . '</td><td colspan="3"> ' . MAX_AGE_TIME . ' ' . _T('info_basic_hours') . ' ' . _T('info_basic_0disable') . '</td></tr>
<tr><td>' . _T('info_basic_urllinking') . '</td><td colspan="3"> ' . AUTO_LINK . ' ' . _T('info_0no1yes') . '</td></tr>
<tr><td>' . _T('info_basic_com_limit') . '</td><td colspan="3"> ' . COMM_MAX . _T('info_basic_com_after') . '</td></tr>
<tr><td>' . _T('info_basic_anonpost') . '</td><td colspan="3"> ' . ALLOW_NONAME . ' ' . _T('info_basic_anonpost_opt') . '</td></tr>
<tr><td>' . _T('info_basic_del_incomplete') . '</td><td colspan="3"> ' . KILL_INCOMPLETE_UPLOAD . ' ' . _T('info_0no1yes') . '</td></tr>
<tr><td>' . _T('info_basic_use_sample', $THUMB_SETTING['Quality']) . '</td><td colspan="3"> ' . USE_THUMB . ' ' . _T('info_0notuse1use') . '</td></tr>
<tr><td>' . _T('info_basic_useblock') . '</td><td colspan="3"> ' . BAN_CHECK . ' ' . _T('info_0disable1enable') . '</td></tr>
<tr><td>' . _T('info_basic_showid') . '</td><td colspan="3"> ' . DISP_ID . ' ' . _T('info_basic_showid_after') . '</td></tr>
<tr><td>' . _T('info_basic_cr_limit') . '</td><td colspan="3"> ' . BR_CHECK . _T('info_basic_cr_after') . '</td></tr>
<tr><td>' . _T('info_basic_timezone') . '</td><td colspan="3"> GMT ' . TIME_ZONE . '</td></tr>
<tr><td>' . _T('info_basic_theme') . '</td><td colspan="3"> ' . $PTE->BlockValue('THEMENAME') . ' ' . $PTE->BlockValue('THEMEVER') . '<br/>by ' . $PTE->BlockValue('THEMEAUTHOR') . '</td></tr>
<tr><td style="text-align:center" colspan="4">' . _T('info_dsusage_top') . '</td></tr>
<tr style="text-align:center"><td>' . _T('info_basic_threadcount') . '</td><td colspan="' . (isset($piosensorInfo) ? '2' : '3') . '"> ' . $counttree . ' ' . _T('info_basic_threads') . '</td>' . (isset($piosensorInfo) ? '<td rowspan="2">' . $piosensorInfo . '</td>' : '') . '</tr>
<tr style="text-align:center"><td>' . _T('info_dsusage_count') . '</td><td colspan="' . (isset($piosensorInfo) ? '2' : '3') . '">' . $countline . '</td></tr>
<tr><td style="text-align:center" colspan="4">' . _T('info_fileusage_top') . STORAGE_LIMIT . ' ' . _T('info_0disable1enable') . '</td></tr>';
    if (STORAGE_LIMIT) {
        $dat .= '
<tr style="text-align:center"><td>' . _T('info_fileusage_limit') . '</td><td colspan="2">' . STORAGE_MAX . ' KB</td><td rowspan="2">' . _T('info_dsusage_usage') . '<br /><span style="color: #' . $clrflag_sl . '">' . substr($tmp_ts_ratio * 100, 0, 6) . '</span> %</td></tr>
<tr style="text-align:center"><td>' . _T('info_fileusage_count') . '</td><td colspan="2"><span style="color: #' . $clrflag_sl . '">' . $tmp_total_size . ' KB</span></td></tr>';
    } else {
        $dat .= '
<tr style="text-align:center"><td>' . _T('info_fileusage_count') . '</td><td>' . $tmp_total_size . ' KB</td><td colspan="2">' . _T('info_dsusage_usage') . '<br /><span style="color: green;">' . _T('info_fileusage_unlimited') . '</span></td></tr>';
    }
    $dat .= '
<tr><td style="text-align:center" colspan="4">' . _T('info_server_top') . '</td></tr>
<tr style="text-align:center"><td colspan="3">' . $func_thumbInfo . '</td><td>' . $func_thumbWork . '</td></tr>
</tbody>
</table>
<hr />
</div>' . "\n";
    foot($dat);
    echo $dat;
}
开发者ID:Kennyl,项目名称:pixmicat,代码行数:101,代码来源:pixmicat.php


示例14: ok

function ok($url, $msg = null, $time = 1500)
{
    global $config, $my, $db, $lang, $slog;
    if ($msg == null) {
        $msg = $lang->phrase('admin_settings_successfully_saved');
    }
    ?>
<script language="Javascript" type="text/javascript">
<!--
window.setTimeout('<?php 
    echo JS_URL($url);
    ?>
', <?php 
    echo $time;
    ?>
);
-->
</script>
<table class="border" border="0" cellspacing="0" cellpadding="4" align="center">
  <tr>
    <td class="obox"><?php 
    echo $lang->phrase('admin_confirmation');
    ?>
</td>
  </tr>
  <tr>
    <td class="mbox" align="center">
    <?php 
    echo $msg;
    ?>
<br /><br />
    <span class="stext"><a href="<?php 
    echo $url;
    ?>
"><?php 
    echo $lang->phrase('admin_continue');
    ?>
</a></span>
    </td>
  </tr>
</table>
	<?php 
    echo foot();
    $slog->updatelogged();
    $db->close();
    exit;
}
开发者ID:BackupTheBerlios,项目名称:viscacha-svn,代码行数:47,代码来源:function.viscacha_backend.php


示例15: ModulePage


//.........这里部分代码省略.........
	for (i = total; i >= 0; i--) {
		if (index == i) {
			list.options[i + to] = new Option(items[i],values[i], 0, 1);
			list.options[i] = new Option(items[i + to], values[i +to]);
			i--;
		} else {
			list.options[i] = new Option(items[i], values[i]);
	   }
	}
	list.focus();
	return true;
}
function add(target,name,value){
target.options[target.length] = new Option(name, value);
}
function remove(target){
	var list = document.getElementById(target);
  var selIndex = list.selectedIndex;
  if (selIndex != -1) {
    for(i=list.length-1; i>=0; i--)
    {
      if(list.options[i].selected)
      {
        list.options[i] = null;
      }
    }
    if (list.length > 0) {
      list.selectedIndex = selIndex == 0 ? 0 : selIndex - 1;
    }
  }
}
function place(){
  placeInHidden("|", "topmost", "ntop");
  placeInHidden("|", "buttommost", "nbottom");

}
function placeInHidden(delim, selStr, hidStr){
  var selObj = document.getElementById(selStr);
  var hideObj = document.getElementById(hidStr);
  hideObj.value = "";
  for (i = 0; i <= selObj.options.length-1; i++) { 
	hideObj.value += selObj.options[i].value + delim;
  }

}
</script>
<form action=' . $this->mypage . ' method="post" onsubmit="place()">
<input type="hidden" name="action" value="reorder" />
<table>
<tr>
<td>置頂:</td><td></td><td>置底:</td><td></td>
</tr>
<tr>
<td align="middle">';
                echo '  <select id="topmost" size="30">';
                $logs = @file($this->TOPMOST_LOG);
                // order asc
                $logs = array_reverse($logs);
                foreach ($logs as $tm) {
                    echo '    <option value="' . $tm . '" >' . $tm . '</option>';
                }
                echo '  </select>
</td>
<td>
<input type="button" value="↑" 
onClick="move(\'topmost\',document.getElementById(\'topmost\').selectedIndex,-1)"><br/><br/>
<input type="button" value="↓"
onClick="move(\'topmost\',document.getElementById(\'topmost\').selectedIndex,+1)"><br/><br/>
<input type="button" value="解"
onClick="remove(\'topmost\')">
</td>
<td align="middle">';
                echo '  <select id="buttommost" size="30">';
                $logs = @file($this->BOTTOMMOST_LOG);
                // order asc
                foreach ($logs as $bm) {
                    echo '    <option value="' . $bm . '" >' . $bm . '</option>';
                }
                echo '  </select>
</td>
<td>
<input type="button" value="↑" 
onClick="move(\'buttommost\',document.getElementById(\'buttommost\').selectedIndex,-1)"><br/><br/>
<input type="button" value="↓"
onClick="move(\'buttommost\',document.getElementById(\'buttommost\').selectedIndex,+1)"><br/><br/>
<input type="button" value="解"
onClick="remove(\'buttommost\')">
</td>
</tr>
<tr><td colspan="4"><input type="hidden" name="newTopmost" id="ntop" value="" /><input type="hidden" name="newBottommost" id="nbottom" value="" />
  <input type="hidden" name="action" value="reorder">
  <input type="submit">
</td>
</tr>
</table></form>';
                $dat = '';
                foot($dat);
                echo $dat;
        }
    }
开发者ID:Kennyl,项目名称:pixmicat_modules,代码行数:101,代码来源:mod_threadorder.php


示例16: foot

              <div class="small-box bg-red">
                <div class="inner">
                  <h3>65</h3>
                  <p>Unique Visitors</p>
                </div>
                <div class="icon">
                  <i class="ion ion-pie-graph"></i>
                </div>
                <a href="#" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a>
              </div>
            </div><!-- ./col -->
          </div>

        </section>
      </div>

      <!-- Main Footer -->
      <?php 
foot($pageName);
?>
      <!-- Add the sidebar's background. This div must be placed
           immediately after the control sidebar -->
      <div class="control-sidebar-bg"></div>
    </div><!-- ./wrapper -->
    <?php 
include_js();
?>

  </body>
</html>
开发者ID:CPE16,项目名称:web_swe,代码行数:30,代码来源:student-page.php


示例17: confirm

 
					<input type="submit" value="<?php 
        echo _DELETE;
        ?>
" onclick="return confirm('<?php 
        echo _RLY_DLT_SUBSCTN;
        ?>
')"> 
<?php 
    }
    ?>
 &nbsp; 
				</td> 
			</form> 
	</tr> 
	<?php 
    $i++;
}
?>
 

</TABLE>
</TD></TR></TABLE>
<br><br>

<?php 
// page footer
foot($sess, $design);
?>
 
开发者ID:steviedeeee,项目名称:mutual-credit-uniletim,代码行数:28,代码来源:r_pr_zmena.php


示例18: enforce_authentication

<?php

require '../../include/mellivora.inc.php';
enforce_authentication(CONFIG_UC_MODERATOR);
$rule = db_select_one('instances', array('*'), array('id' => $_SESSION['IID']));
head('Site management');
menu_management();
section_subhead('Edit Instance Settings');
form_start(CONFIG_SITE_ADMIN_RELPATH . 'actions/edit_settings');
echo '<div class="form-group">
      <label class="col-sm-2 control-label" for="rule">Registration Token</label>
      <div class="col-sm-10">
          <input id="rule" readonly name="rule" class="form-control" placeholder="Registration Token" value="', $rule['registrationToken'] != 0 ? $rule['registrationToken'] : 'Registration Tokens are not enabled.', '" type="text">
      </div>
    </div>';
form_hidden('action', 'edit');
echo $rule['registrationToken'] == 0 ? form_button_submit('Enable Registration Token') : form_button_submit('Disable Registration Token');
form_end();
foot();
开发者ID:ZlhlmChZ,项目名称:source-code-mell,代码行数:19,代码来源:edit_settings.php


示例19: getUserRepositories

            break;
    }
}
$content .= '<div id="repositories">' . "\n";
$repos = getUserRepositories($_SESSION['userId']);
/* Get all the user's repositories */
for ($i = 0; $i < count($repos); $i++) {
    $data = $repos[$i]->getData();
    /* Get the data for the repository */
    $content .= <<<EOT
<div id="repo{$i}" class="repository">
  <h3 class="indent"><a href="viewCommits.php?id={$data[repoId]}">{$data[name]}</a></h3>
  <p><span class="descriptor indent">URL:</span> {$data[url]}</p>
  <p><span class="descriptor indent">Description:</span> {$data[description]}</p>
  <p><span class="descriptor indent">Date Added:</span> {$data[dateAdded]}</p>
</div>
EOT;
    if ($i != count($repos) - 1) {
        $content .= "\n<br/>\n<br/>\n";
    } else {
        $content .= "\n</div>\n";
    }
}
/*
**   P U T    V A R S
**    O N    P A G E
*/
head($title, $style, $scripts);
body($header, $subtitle, $content, $navigation);
foot($footer, $dbc);
开发者ID:joshelser,项目名称:Repository-Aggregator,代码行数:30,代码来源:viewRepositories.php


示例20: foot

<li><a href="links_e.php" >Links </a></li>
<li>
<a href="bilde_e.php" >Sketches</a></li>
<li>
<a href="foto_e.php" >Photographs</a>
 </li>
<li>
<a href="kontakt_e.php"
 
  title="Contact Details">Contact</a></li>
  <li><a href="sitemap_e.php"
 
  title="Sitemap">Sitemap</a><br/><br/></li>
</ul>
                <?php 
print foot();
?>
                    </div>
                </div>
            </div>
        </div>
        <!-- /#page-content-wrapper -->

    </div>
    <!-- /#wrapper -->

 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
 <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

  <script>
    $("#menu-toggle").click(function(e) {
开发者ID:guylancaster999,项目名称:william2016,代码行数:31,代码来源:sitemap_e.php



注:本文中的foot函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP footer函数代码示例发布时间:2022-05-15
下一篇:
PHP foogallery_plugin_name函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap