本文整理匯總了PHP中app\models\News::upload方法的典型用法代碼示例。如果您正苦於以下問題:PHP News::upload方法的具體用法?PHP News::upload怎麽用?PHP News::upload使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app\models\News
的用法示例。
在下文中一共展示了News::upload方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: actionCreate
/**
* Creates a new News model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$model = new News();
$loaded = $model->load(Yii::$app->request->post());
if ($loaded) {
if ($model->is_published) {
$model->published = date('Y-m-d H:i:s');
}
}
if ($loaded && $model->save()) {
$model->upload();
$category_relations = $_POST['News']['categories'];
foreach ($category_relations as $cat_id) {
$category_relation = new CategoryRelations();
$category_relation->news_id = $model->id;
$category_relation->category_id = $cat_id;
$category_relation->save();
}
return $this->redirect(['view', 'id' => $model->id]);
} else {
$categories_arr = Category::find()->asArray()->all();
foreach ($categories_arr as &$cat) {
$categories[$cat['id']] = $cat['name'];
}
$model->is_published = 1;
return $this->render('create', compact('model', 'categories'));
}
}