コード例 #1
0
ファイル: Serialization.php プロジェクト: comdan66/zeusdesign
 public function __construct(Model $model, &$options)
 {
     $this->includes_with_class_name_element = true;
     parent::__construct($model, $options);
 }
コード例 #2
0
 public function __construct(Model $model, &$options)
 {
     $this->includesWithClassNameElement = true;
     parent::__construct($model, $options);
 }
コード例 #3
0
ファイル: Config.php プロジェクト: spraith/php-activerecord
 /**
  * @deprecated
  */
 public function set_date_format($format)
 {
     trigger_error('Use ActiveRecord\\Serialization::$DATETIME_FORMAT. Config::set_date_format() has been deprecated.', E_USER_DEPRECATED);
     Serialization::$DATETIME_FORMAT = $format;
 }
コード例 #4
0
ファイル: Config.php プロジェクト: killich/JustFrame
 /**
  * DEPRECATED
  */
 public function set_date_format($format)
 {
     error_log('DEPRECATION WARNING: Config::set_date_format() has been deprecated and will be removed in a future version. Please use ActiveRecord\\Serialization::$DATETIME_FORMAT instead.');
     Serialization::$DATETIME_FORMAT = $format;
 }