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


PHP Company::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($qid)
 {
     include '../helpers/db_new.inc.php';
     $sql = 'SELECT
                     fullname
                     ,shortname
                     ,englishname
                     ,acronym
                     ,exchid
                     ,companyid
                     ,privileged
                 FROM quotes
                 WHERE qid = :qid AND ActiveFlag = 1';
     try {
         $stmt = $pdo->prepare($sql);
         $stmt->bindParam(':qid', $qid);
         $stmt->execute();
     } catch (PDOException $e) {
         $error = $e->getMessage();
         $redirect = '../error.html.php';
         header("Location: {$redirect}");
         exit;
     }
     $row = $stmt->fetch();
     if ($row) {
         parent::__construct($row['companyid']);
         $this->_qid = $qid;
         $this->_quoteName = $row['fullname'];
         $this->_quoteShortName = $row['shortname'];
         $this->_englishName = $row['englishname'];
         $this->_acronym = $row['acronym'];
         $this->_exchid = $row['exchid'];
         $this->_privileged = $row['privileged'];
     }
 }
开发者ID:soanni,项目名称:stocks_oop,代码行数:35,代码来源:Quote.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setupCustomFields('Accounts');
     foreach ($this->field_defs as $field) {
         if (isset($field['name'])) {
             $this->field_name_map[$field['name']] = $field;
         }
     }
     //Email logic
     if (!empty($_REQUEST['parent_id']) && !empty($_REQUEST['parent_type']) && $_REQUEST['parent_type'] == 'Emails' && !empty($_REQUEST['return_module']) && $_REQUEST['return_module'] == 'Emails') {
         $_REQUEST['parent_name'] = '';
         $_REQUEST['parent_id'] = '';
     }
 }
开发者ID:sacredwebsite,项目名称:SuiteCRM,代码行数:15,代码来源:Account.php

示例3: __construct

 /**
  * @brief Constructor
  *
  * @note  It's allowed to create an object with the ID 0 (for the root element).
  *
  * @param Database  &$database      reference to the Database-object
  * @param User      &$current_user  reference to the current user which is logged in
  * @param Log       &$log           reference to the Log-object
  * @param integer   $id             ID of the manufacturer we want to get
  *
  * @throws Exception    if there is no such manufacturer in the database
  * @throws Exception    if there was an error
  */
 public function __construct(&$database, &$current_user, &$log, $id)
 {
     parent::__construct($database, $current_user, $log, 'manufacturers', $id);
 }
开发者ID:AlexanderS,项目名称:Part-DB,代码行数:17,代码来源:class.Manufacturer.php

示例4: unset

 function __construct()
 {
     parent::__construct();
     $this->getField('accountnumber')->dropnotnull();
     unset($this->_autohandlers['accountnumber']);
 }
开发者ID:uzerpllp,项目名称:uzerp,代码行数:6,代码来源:Lead.php

示例5:

 function __construct()
 {
     parent::__construct();
 }
开发者ID:daniel-samson,项目名称:suite-development-kit,代码行数:4,代码来源:My_Custom_Company.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     global $current_user;
     if (!empty($current_user)) {
         $this->team_id = $current_user->default_team;
         //default_team is a team id
     } else {
         $this->team_id = 1;
         // make the item globally accessible
     }
     //Email logic
     if (!empty($_REQUEST['parent_id']) && !empty($_REQUEST['parent_type']) && $_REQUEST['parent_type'] == 'Emails' && !empty($_REQUEST['return_module']) && $_REQUEST['return_module'] == 'Emails') {
         $_REQUEST['parent_name'] = '';
         $_REQUEST['parent_id'] = '';
     }
 }
开发者ID:jglaine,项目名称:sugar761-ent,代码行数:17,代码来源:Account.php


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