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


PHP LSActiveRecord::__construct方法代码示例

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


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

示例1: __construct

 /**
  * @param string $scenario
  * @param int $iSurveyId
  */
 public function __construct($iSurveyId = null, $scenario = 'insert')
 {
     if (!isset($iSurveyId)) {
         $iSurveyId = Response::getLastSurveyId();
     }
     $this->surveyId = $iSurveyId;
     parent::__construct($scenario);
 }
开发者ID:mfavetti,项目名称:LimeSurvey,代码行数:12,代码来源:Timing.php

示例2: __construct

 /**
  * @param string $scenario
  * @param string $sTableName
  */
 public function __construct($sTableName = null, $scenario = 'insert')
 {
     if (!isset($sTableName)) {
         //Yii::trace('sTableName missing.');
         throw new Exception('sTableName missing.');
     }
     $this->tableName = $sTableName;
     parent::__construct($scenario);
 }
开发者ID:jdbaltazar,项目名称:survey-office,代码行数:13,代码来源:PluginDynamic.php

示例3: __construct

 /**
  * See example usage at manual page: https://manual.limesurvey.org/Notifications#Examples
  * @param array<string, mixed>|string|null $options If string then scenario
  */
 public function __construct($options = null)
 {
     // Don't do anything if this is called from self::model()
     if (is_string($options) || is_null($options)) {
         parent::__construct($options);
         // $options = scenario in this case
         return;
     } else {
         // Why not Zoidberg? (\/) (°,,,°) (\/)
         parent::__construct();
     }
     $options = $this->checkShortcuts($options);
     $this->checkMandatoryFields($options, array('entity', 'entity_id', 'title', 'message'));
     // Only allow 'survey' or 'user' as entity
     if ($options['entity'] != 'survey' && $options['entity'] != 'user') {
         throw new InvalidArgumentException('Invalid entity: ' . $options['entity']);
     }
     // Default to 'default' display class
     if (!isset($options['display_class'])) {
         $options['display_class'] = 'default';
     }
     // Default to 'log' notification importance
     if (!isset($options['importance'])) {
         $options['importance'] = self::NORMAL_IMPORTANCE;
     }
     // importance must be between 1 and 3
     if ($options['importance'] < 1 && $options['importance'] > 3) {
         throw new InvalidArgumentException('Invalid importance: ' . $options['importance']);
     }
     // Set everything up
     $this->entity = $options['entity'];
     $this->entity_id = $options['entity_id'];
     $this->title = $options['title'];
     $this->message = $options['message'];
     $this->display_class = $options['display_class'];
     $this->importance = $options['importance'];
     $this->status = 'new';
     $this->created = date('Y-m-d H:i:s', time());
     $this->first_read = null;
 }
开发者ID:mfavetti,项目名称:LimeSurvey,代码行数:44,代码来源:Notification.php

示例4: __construct

 public function __construct($scenario = 'insert')
 {
     list(, $this->dynamicId) = explode('_', get_class($this));
     parent::__construct($scenario);
 }
开发者ID:mfavetti,项目名称:LimeSurvey,代码行数:5,代码来源:Dynamic.php


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