當前位置: 首頁>>代碼示例>>PHP>>正文


PHP JsonModel::__construct方法代碼示例

本文整理匯總了PHP中Zend\View\Model\JsonModel::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP JsonModel::__construct方法的具體用法?PHP JsonModel::__construct怎麽用?PHP JsonModel::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend\View\Model\JsonModel的用法示例。


在下文中一共展示了JsonModel::__construct方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 /**
  * @param null   $variables
  * @param mixed|int    $code - 0 for success
  * @param string $message - General public message for client
  * @param array  $errors - Example - Pass the messages from input validator
  * @param null   $options
  */
 public function __construct($variables = null, $code = 0, $message = 'OK', $errors = [], $options = null)
 {
     $this->setCode($code);
     $this->setMessage($message);
     $this->setErrors($errors);
     parent::__construct($variables, $options);
 }
開發者ID:reliv,項目名稱:rcm,代碼行數:14,代碼來源:ApiJsonModel.php

示例2: __construct

 /**
  * Initialize instance
  * 
  * @param InputFilterInterface $inputFilter
  * @param string $variables
  * @param string $options
  */
 public function __construct(InputFilterInterface $inputFilter, $variables = null, $options = null)
 {
     parent::__construct($variables, $options);
     $this->setVariable('isValid', $inputFilter->isValid());
     $messages = $inputFilter->getMessages();
     $inputs = array();
     foreach ($inputFilter->getValues() as $name => $value) {
         $inputs[$name] = array('value' => $value, 'messages' => array_key_exists($name, $messages) ? $messages[$name] : array());
     }
     $this->setVariable('inputs', $inputs);
 }
開發者ID:sporkcode,項目名稱:spork,代碼行數:18,代碼來源:InputFilter.php

示例3: __construct

 /**
  * Create a new model.
  *
  * The API response object can be passed here directly as the first
  * argument.
  *
  * @param \Omeka\Api\Response $apiResponse API response object
  * @param array|Traversable $options
  */
 public function __construct($apiResponse = null, $options = null)
 {
     $variables = [self::API_RESPONSE_KEY => $apiResponse];
     parent::__construct($variables, $options);
 }
開發者ID:patrova,項目名稱:omeka-s,代碼行數:14,代碼來源:ApiJsonModel.php

示例4: __construct

 public function __construct($variables = null, $options = null)
 {
     parent::__construct($variables, $options);
     $this->success = true;
 }
開發者ID:shraddhanegi,項目名稱:KJSencha,代碼行數:5,代碼來源:Result.php

示例5: __construct

 /**
  * @param object|null $model The model to serialize.
  * @param array|\Traversable|null $options
  */
 public function __construct($model = null, $options = null)
 {
     parent::__construct(array('model' => $model), $options);
 }
開發者ID:Kipperlenny,項目名稱:ZendRestModule,代碼行數:8,代碼來源:SerializedJsonModel.php

示例6: __construct

 /**
  * @param int $errCode
  * @param array|null|\Traversable $errMessage
  * @param null $options
  */
 public function __construct($errCode, $errMessage, $options = null)
 {
     $this->errCode = $errCode;
     $this->errMessage = $errMessage;
     parent::__construct(null, $options);
 }
開發者ID:zhangyuxiao,項目名稱:qoros,代碼行數:11,代碼來源:ErrorJsonModel.php

示例7: __construct

 /**
  * @param mixed $variables
  * @param string $options
  */
 public function __construct($variables = null, $options = null)
 {
     parent::__construct($variables, $options);
 }
開發者ID:zhangyuxiao,項目名稱:qoros,代碼行數:8,代碼來源:UnifyJsonModel.php


注:本文中的Zend\View\Model\JsonModel::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。