当前位置: 首页>>代码示例>>PHP>>正文


PHP AdminSecBaseModel::__construct方法代码示例

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


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

示例1:

        function __construct()
        {
            parent::__construct();

            //specific things for this class
            $this->userManager = User::newInstance();
        }
开发者ID:pombredanne,项目名称:ArcherSys,代码行数:7,代码来源:users.php

示例2:

 function __construct()
 {
     parent::__construct();
     $this->ajax = true;
     if ($this->isModerator()) {
         if (!in_array($this->action, array('items', 'media', 'comments', 'custom'))) {
             $this->action = 'error_permissions';
         }
     }
 }
开发者ID:jmcclenon,项目名称:Osclass,代码行数:10,代码来源:ajax.php

示例3:

 function __construct()
 {
     parent::__construct();
     if ($this->isModerator()) {
         if ($this->action != 'edit' && $this->action != 'edit_post' || Params::getParam('id') != '' && Params::getParam('id') != osc_logged_admin_id()) {
             osc_add_flash_error_message(_m("You don't have enough permissions"), 'admin');
             $this->redirectTo(osc_admin_base_url());
         }
     }
     //specific things for this class
     $this->adminManager = Admin::newInstance();
 }
开发者ID:jmcclenon,项目名称:Osclass,代码行数:12,代码来源:admins.php

示例4:

 function __construct()
 {
     parent::__construct();
 }
开发者ID:jmcclenon,项目名称:Osclass,代码行数:4,代码来源:upgrade.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     $this->ajax = true;
     $this->model = Page::newInstance();
 }
开发者ID:bomvendador,项目名称:soroka_r,代码行数:6,代码来源:Admin.php

示例6:

 function __construct()
 {
     parent::__construct();
     //specific things for this class
     $this->itemCommentManager = ItemComment::newInstance();
 }
开发者ID:oanav,项目名称:closetshare,代码行数:6,代码来源:comments.php

示例7:

 function __construct()
 {
     parent::__construct();
     //specific things for this class
     $this->localeManager = OSCLocale::newInstance();
 }
开发者ID:naneri,项目名称:Osclass,代码行数:6,代码来源:languages.php

示例8:

 function __construct()
 {
     parent::__construct();
     //specific things for this class
     $this->resourcesManager = ItemResource::newInstance();
 }
开发者ID:semul,项目名称:Osclass,代码行数:6,代码来源:media.php

示例9:

 function __construct()
 {
     parent::__construct();
     //specific things for this class
     $this->categoryManager = Category::newInstance();
 }
开发者ID:michaelxizhou,项目名称:myeden69,代码行数:6,代码来源:functions.php

示例10:

 function __construct()
 {
     parent::__construct();
     //specific things for this class
     $this->pageManager = Page::newInstance();
 }
开发者ID:randomecho,项目名称:OSClass,代码行数:6,代码来源:pages.php

示例11:

 function __construct()
 {
     parent::__construct();
     //specific things for this class
     $this->fieldManager = Field::newInstance();
 }
开发者ID:acharei,项目名称:OSClass,代码行数:6,代码来源:custom_fields.php

示例12:

 function __construct()
 {
     parent::__construct();
     $this->ajax = true;
 }
开发者ID:ricktaylord,项目名称:OSClass,代码行数:5,代码来源:ajax.php

示例13:

 function __construct()
 {
     parent::__construct();
     //specific things for this class
     $this->adminManager = Admin::newInstance();
 }
开发者ID:hashemgamal,项目名称:OSClass,代码行数:6,代码来源:admins.php


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