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


PHP Option::save方法代碼示例

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


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

示例1: actionCreate

 /**
  * Creates a new Option model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  *
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Option();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     }
     return $this->render('create', ['model' => $model]);
 }
開發者ID:tampaphp,項目名稱:app-cms,代碼行數:14,代碼來源:SettingController.php

示例2: actionCreate

 /**
  * Creates a new Option model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Option();
     $model->template_id = Yii::$app->request->get('template_id');
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         Yii::$app->getSession()->setFlash('option-create-success');
         return $this->redirect(['/template/update', 'id' => $model->template_id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
開發者ID:darkffh,項目名稱:yii2-lowbase,代碼行數:16,代碼來源:OptionController.php

示例3: set

 /**
  * Add new option, required name and value.
  * If value is array or object, it will be converted to json with Json::encode.
  *
  * @param string $name
  * @param string $value
  * @param string|array $label
  * @param string $group
  * @return bool
  */
 public static function set($name, $value, $label = null, $group = null)
 {
     if (is_array($value) || is_object($value)) {
         $value = Json::encode($value);
     }
     if (static::get($name) !== null) {
         return static::up($name, $value);
     }
     $model = new Option(['name' => $name, 'value' => $value, 'label' => $label, 'group' => $group]);
     return $model->save();
 }
開發者ID:writesdown,項目名稱:app-cms,代碼行數:21,代碼來源:Option.php

示例4: set

 /**
  * Add new option, required option_name and option_value.
  * If option_value is array or object, it will be converted to json with Json::encode.
  *
  * @param string       $optionName
  * @param string       $optionValue
  * @param string|array $optionLabel
  * @param string       $optionGroup
  *
  * @return bool
  */
 public static function set($optionName, $optionValue, $optionLabel = null, $optionGroup = null)
 {
     if (is_array($optionValue) || is_object($optionValue)) {
         $optionValue = Json::encode($optionValue);
     }
     if (static::get($optionName) !== null) {
         return static::up($optionName, $optionValue);
     }
     $model = new Option();
     $model->option_name = $optionName;
     $model->option_value = $optionValue;
     $model->option_label = $optionLabel;
     $model->option_group = $optionGroup;
     return $model->save();
 }
開發者ID:tampaphp,項目名稱:app-cms,代碼行數:26,代碼來源:Option.php

示例5: set

 /**
  * Add new option, required option_name and option_value.
  * If option_value is array or object, it will be converted to json with Json::encode.
  *
  * @param string       $option_name
  * @param string       $option_value
  * @param string|array $option_label
  * @param string       $option_group
  *
  * @return bool
  */
 public static function set($option_name, $option_value, $option_label = null, $option_group = null)
 {
     /* @var $model \common\models\Option */
     $model = new Option();
     if (is_array($option_value) || is_object($option_value)) {
         $model->option_value = Json::encode($option_value);
     } else {
         $model->option_value = $option_value;
     }
     $model->option_name = $option_name;
     $model->option_label = $option_label;
     $model->option_group = $option_group;
     return $model->save();
 }
開發者ID:wozhen,項目名稱:yii2-cms-writedown,代碼行數:25,代碼來源:Option.php


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