当前位置: 首页>>代码示例>>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;未经允许,请勿转载。