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


PHP appCommonFrm::__construct方法代码示例

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


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

示例1: __construct

 public function __construct()
 {
     parent::__construct();
     $this->Members = new members();
     $this->memberverifycode = new member_verifycode();
     $this->email_token = new email_token_mode();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:send_mail.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     $this->api = new appModule();
     $this->material = new material();
     $this->company = new company();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:app_module.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
     $this->team = new teamClass();
     $this->notify = new notify();
     $this->teamApi = new team();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:team_update.php

示例4: livemms

 function __construct()
 {
     parent::__construct();
     require_once CUR_CONF_PATH . 'lib/livemms.class.php';
     $this->mLivemms = new livemms();
     //	require_once ROOT_PATH . 'lib/class/curl.class.php';
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:sys_update.php

示例5: __construct

class columnApi extends appCommonFrm
{
    private $site;
    private $column;
    private $app;
    public function __construct()
    {
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:column.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     $this->api = new app();
     $this->material = new material();
     $this->version_mode = new app_version_mode();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:app.php

示例7: urldecode

 function __construct()
 {
     parent::__construct();
     $this->userinfo['id'] = $this->input['id'];
     $this->userinfo['username'] = urldecode($this->input['username']);
     $this->userinfo['email'] = urldecode($this->input['email']);
     //获取发邮件配置
     require ROOT_PATH . 'lib/class/uset.class.php';
     $mUset = new uset();
     $arr = array('emailsend', 'emailwrapbracket', 'emailtype', 'usessl', 'smtphost', 'smtpport', 'smtpuser', 'smtppassword', 'email_footer', 'email_title', 'system_name', 'verify_url', 'email_content', 'pwd_title', 'pwd_content', 'pwd_verify_url');
     $rt = $mUset->get_desig_uset($arr);
     unset($rt['result']);
     $config = array();
     foreach ($rt as $k => $v) {
         $config[$v['identi']] = $v['status'];
     }
     $this->settings = $config;
     $this->from = $this->settings['emailsend'];
     $this->emailwrapbracket = $this->settings['emailwrapbracket'];
     if ($this->settings['emailtype'] == 'smtp') {
         $this->emailtype = 'smtp';
         $this->smtpport = empty($this->settings['smtpport']) ? 25 : intval($this->settings['smtpport']);
         $this->smtphost = empty($this->settings['smtphost']) ? 'localhost' : $this->settings['smtphost'];
         if ($this->settings['usessl']) {
             $this->smtphost = 'ssl://' . $this->smtphost;
         }
         $this->smtpuser = $this->settings['smtpuser'];
         $this->smtppassword = $this->settings['smtppassword'];
     }
     $this->boundry = "----=_NextPart_000_0022_01C1BD6C.D0C0F9F0";
     $this->settings['system_name'] = $this->clean_message($this->settings['system_name']);
     $this->from_user = $this->settings['system_name'];
 }
开发者ID:h3len,项目名称:Project,代码行数:33,代码来源:email.php

示例8: __construct

 public function __construct()
 {
     parent::__construct();
     $this->api = new appClient();
     $this->version_mode = new app_version_mode();
     $this->app_info_mode = new app_info_mode();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:app_client.php

示例9: user

 function __construct()
 {
     parent::__construct();
     $this->mUser = new user();
     $this->mCredit = new credit();
     $this->mUset = new uset();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:create.php

示例10: __construct

 public function __construct()
 {
     parent::__construct();
     $this->api = new albums_app();
     include CUR_CONF_PATH . 'lib/Core.class.php';
     $this->obj = new Core();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:albums.php

示例11: __construct

define('MOD_UNIQUEID', 'photos');
//模块标识
class photosApi extends appCommonFrm
{
    private $api;
    public function __construct()
    {
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:photos.php

示例12: __construct

 public function __construct()
 {
     parent::__construct();
     include_once CUR_CONF_PATH . 'lib/member.class.php';
     $this->mMember = new member();
     include_once CUR_CONF_PATH . 'lib/member_info.class.php';
     $this->mMemberInfo = new memberInfo();
 }
开发者ID:h3len,项目名称:Project,代码行数:8,代码来源:member_edit.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     require_once CUR_CONF_PATH . 'lib/member.class.php';
     $this->mMember = new member();
     require_once CUR_CONF_PATH . 'lib/sms_server.class.php';
     $this->mSmsServer = new smsServer();
 }
开发者ID:h3len,项目名称:Project,代码行数:8,代码来源:unbind.php

示例14: vote

 function __construct()
 {
     parent::__construct();
     require_once CUR_CONF_PATH . 'lib/vote.class.php';
     $this->mVote = new vote();
     require_once ROOT_PATH . 'lib/class/verifycode.class.php';
     $this->mVerifyCode = new verifycode();
 }
开发者ID:h3len,项目名称:Project,代码行数:8,代码来源:vote_add.php

示例15: user

 function __construct()
 {
     parent::__construct();
     require_once ROOT_DIR . 'lib/user/user.class.php';
     require_once ROOT_DIR . 'lib/class/curl.class.php';
     $this->user = new user();
     $this->curl = new curl();
 }
开发者ID:h3len,项目名称:Project,代码行数:8,代码来源:show.php


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