當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。