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

PHP phpok_control类代码示例

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

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



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

示例1: __construct

 public function __construct()
 {
     parent::control();
     $this->assign("form_list", $this->model('form')->form_all());
     $this->assign("field_list", $this->model('form')->field_all());
     $this->assign("format_list", $this->model('form')->format_all());
 }
开发者ID:joyerma,项目名称:yongzhuo,代码行数:7,代码来源:ext_control.php


示例2: __construct

 public function __construct()
 {
     parent::control();
     $list = array("arclist" => P_Lang('文章列表'), "arc" => P_Lang('文章内容'), "cate" => P_Lang('分类信息'), "catelist" => P_Lang('分类树'), "project" => P_Lang('项目信息'), "sublist" => P_Lang('子项目信息'), "parent" => P_Lang('上级项目'), "fields" => P_Lang('字段及表单'));
     $this->phpok_type_list = $list;
     $this->assign("phpok_type_list", $list);
 }
开发者ID:joyerma,项目名称:yongzhuo,代码行数:7,代码来源:call_control.php


示例3: __construct

 public function __construct()
 {
     parent::control();
     $this->mlist = get_class_methods($this);
     $this->model('project')->site_id($this->site['id']);
     $this->lib('form')->appid('www');
 }
开发者ID:renlong567,项目名称:43168,代码行数:7,代码来源:phpok_call.php


示例4:

 function __construct()
 {
     parent::control();
     $this->form_list = $this->model("form")->form_list();
     $this->field_list = $this->model("form")->field_list();
     $this->format_list = $this->model("form")->format_list();
 }
开发者ID:renlong567,项目名称:43168,代码行数:7,代码来源:inp_control.php


示例5:

 function __construct()
 {
     parent::control();
     $this->popedom = appfile_popedom("usergroup");
     $this->assign("popedom", $this->popedom);
     $this->lib('form')->cssjs();
 }
开发者ID:renlong567,项目名称:43168,代码行数:7,代码来源:usergroup_control.php


示例6: __construct

 public function __construct()
 {
     parent::control();
     $this->popedom = appfile_popedom("tag");
     $this->assign("popedom", $this->popedom);
     $this->model('tag')->site_id($_SESSION['admin_site_id']);
 }
开发者ID:renlong567,项目名称:43168,代码行数:7,代码来源:tag_control.php


示例7:

 function __construct()
 {
     parent::control();
     $this->model("user");
     $this->model("usergroup");
     $this->popedom = appfile_popedom("user");
     $this->assign("popedom", $this->popedom);
 }
开发者ID:renlong567,项目名称:43168,代码行数:8,代码来源:user_control.php


示例8:

 function __construct()
 {
     parent::control();
     $this->model("sysmenu");
     $this->popedom = appfile_popedom("system");
     $this->assign("popedom", $this->popedom);
     $this->model("popedom");
 }
开发者ID:renlong567,项目名称:43168,代码行数:8,代码来源:system_control.php


示例9: __construct

 public function __construct()
 {
     parent::control();
     $this->obj = $this->_object();
     if (file_exists($this->dir_phpok . 'www/global.func.php')) {
         include_once $this->dir_phpok . 'www/global.func.php';
     }
 }
开发者ID:renlong567,项目名称:43168,代码行数:8,代码来源:html_control.php


示例10:

 function __construct()
 {
     parent::control();
     $this->model("res");
     $this->model("gd");
     $this->lib("file");
     $this->lib("json");
     $this->lib("trans");
 }
开发者ID:renlong567,项目名称:43168,代码行数:9,代码来源:upload_control.php


示例11: error

 function __construct()
 {
     parent::control();
     //判断是否有读权限
     $groupid = $this->model('usergroup')->group_id($_SESSION['user_id']);
     if (!$groupid) {
         error(P_Lang('无法获取前端用户组信息'), '', 'error');
     }
     $this->user_groupid = $groupid;
 }
开发者ID:renlong567,项目名称:43168,代码行数:10,代码来源:project_control.php


示例12: __construct

 public function __construct()
 {
     parent::control();
     $this->model('popedom')->siteid($this->site['id']);
     $groupid = $this->model('usergroup')->group_id($_SESSION['user_id']);
     if (!$groupid) {
         $this->json(P_Lang('无法获取前端用户组信息'));
     }
     $this->user_groupid = $groupid;
 }
开发者ID:renlong567,项目名称:43168,代码行数:10,代码来源:post_control.php


示例13: __construct

 public function __construct()
 {
     parent::control();
     if (!$_SESSION["user_id"]) {
         error(P_Lang('未登录会员不能执行此操作'), $this->url, "error");
     }
     $this->group_rs = $this->model('usergroup')->group_rs($_SESSION['user_id']);
     if (!$this->group_rs) {
         error(P_Lang('您的账号有异常:无法获取相应的会员组信息,请联系管理员'), '', "error");
     }
 }
开发者ID:renlong567,项目名称:43168,代码行数:11,代码来源:usercp_control.php


示例14:

 function __construct()
 {
     parent::control();
     $this->form_list = $this->model('form')->form_all();
     $this->field_list = $this->model('form')->field_all();
     $this->format_list = $this->model('form')->format_all();
     $this->assign('form_list', $this->form_list);
     $this->assign("field_list", $this->field_list);
     $this->assign("format_list", $this->format_list);
     $this->popedom = appfile_popedom("module");
     $this->assign("popedom", $this->popedom);
 }
开发者ID:renlong567,项目名称:43168,代码行数:12,代码来源:module_control.php


示例15:

 function __construct()
 {
     parent::control();
 }
开发者ID:joyerma,项目名称:yongzhuo,代码行数:4,代码来源:tag_control.php


示例16: __construct

 public function __construct()
 {
     parent::control();
     $this->cart_id = $this->model('cart')->cart_id(session_id(), $_SESSION['user_id']);
 }
开发者ID:renlong567,项目名称:43168,代码行数:5,代码来源:cart_control.php


示例17: __construct

 public function __construct()
 {
     parent::control();
     $this->popedom = appfile_popedom("admin");
     $this->assign("popedom", $this->popedom);
 }
开发者ID:renlong567,项目名称:43168,代码行数:6,代码来源:admin_control.php


示例18:

 function __construct()
 {
     parent::control();
     $this->model("admin");
     $this->model("site");
 }
开发者ID:renlong567,项目名称:43168,代码行数:6,代码来源:login_control.php


示例19: __construct

 public function __construct()
 {
     parent::control();
     $keytype_list = array('id' => "ID", 'title' => P_Lang('名称'), 'name' => P_Lang('文件名'), 'ext' => P_Lang('附件扩展名'), 'start_date' => P_Lang('开始时间'), 'stop_date' => P_Lang('结束时间'));
     $this->assign('keytype_list', $keytype_list);
 }
开发者ID:renlong567,项目名称:43168,代码行数:6,代码来源:open_control.php


示例20:

 function __construct()
 {
     parent::control();
     $this->popedom = appfile_popedom("project");
     $this->assign("popedom", $this->popedom);
 }
开发者ID:renlong567,项目名称:43168,代码行数:6,代码来源:project_control.php



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
PHP phpthumb_functions类代码示例发布时间:2022-05-23
下一篇:
PHP phpmailer类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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