當前位置: 首頁>>代碼示例>>PHP>>正文


PHP iACP::head方法代碼示例

本文整理匯總了PHP中iACP::head方法的典型用法代碼示例。如果您正苦於以下問題:PHP iACP::head方法的具體用法?PHP iACP::head怎麽用?PHP iACP::head使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在iACP的用法示例。


在下文中一共展示了iACP::head方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: defined

<?php

/**
 * @package iCMS
 * @copyright 2007-2015, iDreamSoft
 * @license http://www.idreamsoft.com iDreamSoft
 * @author coolmoo <idreamsoft@qq.com>
 * @$Id: files.manage.php 179 2013-03-29 03:21:28Z coolmoo $
 */
defined('iPHP') or exit('What are you doing?');
iACP::head(false);
?>
<script type="text/javascript">
$(function() {
})
</script>
<style>
.widget-title span.icon { width: 24px; }
</style>
<div class="widget-box widget-plain" id="spider-list">
  <div class="widget-title"> <span class="icon">
    <input type="checkbox" class="checkAll" data-target=".spider-list" />
    </span>
    <h5 class="brs">采集列表</h5>
  </div>
  <div class="widget-content nopadding">
    <form action="<?php 
echo APP_FURI;
?>
&do=mpublish" method="post" class="form-inline" id="<?php 
echo APP_FORMID;
開發者ID:Junred,項目名稱:iCMS,代碼行數:31,代碼來源:spider.lists.php

示例2: defined

<?php

/**
 * @package iCMS
 * @copyright 2007-2010, iDreamSoft
 * @license http://www.idreamsoft.com iDreamSoft
 * @author coolmoo <idreamsoft@qq.com>
 * @$Id: links.manage.php 738 2013-04-07 11:27:17Z coolmoo $
 */
defined('iPHP') or exit('What are you doing?');
iACP::head();
?>
<script type="text/javascript">
$(function(){
	$("#<?php 
echo APP_FORMID;
?>
").batch();
});
</script>

<div class="iCMS-container">
  <div class="widget-box">
    <div class="widget-title"> <span class="icon"> <i class="fa fa-search"></i> </span>
      <h5>搜索</h5>
    </div>
    <div class="widget-content">
      <form action="<?php 
echo __SELF__;
?>
" method="get" class="form-inline">
開發者ID:sunhk25,項目名稱:iCMS,代碼行數:31,代碼來源:links.manage.php

示例3: defined

<?php

/**
 * @package iCMS
 * @copyright 2007-2010, iDreamSoft
 * @license http://www.idreamsoft.com iDreamSoft
 * @author coolmoo <idreamsoft@qq.com>
 * @$Id: files.manage.php 179 2013-03-29 03:21:28Z coolmoo $
 */
defined('iPHP') or exit('What are you doing?');
iACP::head($navbar);
?>
<script type="text/javascript">
var click_type = {'file':'文件','dir':'目錄'};

function modal_callback(obj){
  var state = window.parent.modal_<?php 
echo $this->callback;
?>
('<?php 
echo $this->target;
?>
',obj);
  if(state=='off'){
    window.top.iCMS_MODAL.destroy();
  }
}
$(function(){
    $('input[type=file]').uniform();
    <?php 
if ($this->click) {
開發者ID:World3D,項目名稱:iCMS,代碼行數:31,代碼來源:files.explorer.php


注:本文中的iACP::head方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。