diff --git a/frontend/controllers/SiteController.php b/frontend/controllers/SiteController.php index 4582dd1..d258605 100644 --- a/frontend/controllers/SiteController.php +++ b/frontend/controllers/SiteController.php @@ -1,229 +1,247 @@ [ - 'class' => 'yii\web\ErrorAction', - ], - ]; - } - - /** - * @inheritdoc - */ - public function behaviors() - { - return [ - 'verbs' => [ - 'class' => VerbFilter::className(), - 'actions' => [ - 'feedback' => [ 'post' ], - ], - ], - ]; - } + namespace frontend\controllers; - /** - * Displays homepage. - * - * @return mixed - */ - public function actionIndex() - { - return $this->render('index'); - } + use artbox\core\models\Feedback; + use common\models\Settings; + use Yii; + use yii\base\InvalidParamException; + use yii\web\BadRequestHttpException; + use yii\web\Controller; + use yii\filters\VerbFilter; + use common\models\LoginForm; + use frontend\models\PasswordResetRequestForm; + use frontend\models\ResetPasswordForm; + use frontend\models\SignupForm; + use yii\web\Response; /** - * Logs in a user. - * - * @return mixed + * Site controller */ - public function actionLogin() + class SiteController extends Controller { - if (!Yii::$app->user->isGuest) { - return $this->goHome(); + /** + * @inheritdoc + */ + public function actions() + { + return [ + 'error' => [ + 'class' => 'yii\web\ErrorAction', + ], + ]; } - $model = new LoginForm(); - if ($model->load(Yii::$app->request->post()) && $model->login()) { - return $this->goBack(); - } else { - return $this->render('login', [ - 'model' => $model, - ]); + /** + * @inheritdoc + */ + public function behaviors() + { + return [ + 'verbs' => [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'feedback' => [ 'post' ], + ], + ], + ]; } - } - - /** - * Logs out the current user. - * - * @return mixed - */ - public function actionLogout() - { - Yii::$app->user->logout(); - return $this->goHome(); - } - - /** - * Displays contact page. - * - * @return mixed - */ - public function actionContact() - { - $contact = new Feedback(); - return $this->render( - 'contact', - [ - 'contact' => $contact, - ] - ); - } - - /** - * Displays about page. - * - * @return mixed - */ - public function actionAbout() - { - return $this->render('about'); - } - - /** - * Signs user up. - * - * @return mixed - */ - public function actionSignup() - { - $model = new SignupForm(); - if ($model->load(Yii::$app->request->post())) { - if ($user = $model->signup()) { - if (Yii::$app->getUser()->login($user)) { - return $this->goHome(); - } - } + /** + * Displays homepage. + * + * @return mixed + */ + public function actionIndex() + { + return $this->render('index'); } - return $this->render('signup', [ - 'model' => $model, - ]); - } - - /** - * Requests password reset. - * - * @return mixed - */ - public function actionRequestPasswordReset() - { - $model = new PasswordResetRequestForm(); - if ($model->load(Yii::$app->request->post()) && $model->validate()) { - if ($model->sendEmail()) { - Yii::$app->session->setFlash('success', 'Check your email for further instructions.'); - + /** + * Logs in a user. + * + * @return mixed + */ + public function actionLogin() + { + if (!Yii::$app->user->isGuest) { return $this->goHome(); + } + + $model = new LoginForm(); + if ($model->load(Yii::$app->request->post()) && $model->login()) { + return $this->goBack(); } else { - Yii::$app->session->setFlash('error', 'Sorry, we are unable to reset password for the provided email address.'); + return $this->render( + 'login', + [ + 'model' => $model, + ] + ); } } - return $this->render('requestPasswordResetToken', [ - 'model' => $model, - ]); - } - - /** - * Resets password. - * - * @param string $token - * @return mixed - * @throws BadRequestHttpException - */ - public function actionResetPassword($token) - { - try { - $model = new ResetPasswordForm($token); - } catch (InvalidParamException $e) { - throw new BadRequestHttpException($e->getMessage()); + /** + * Logs out the current user. + * + * @return mixed + */ + public function actionLogout() + { + Yii::$app->user->logout(); + + return $this->goHome(); } - if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) { - Yii::$app->session->setFlash('success', 'New password saved.'); + /** + * Displays contact page. + * + * @return mixed + */ + public function actionContact() + { + $contact = new Feedback(); + return $this->render( + 'contact', + [ + 'contact' => $contact, + ] + ); + } + + /** + * Displays about page. + * + * @return mixed + */ + public function actionAbout() + { + return $this->render('about'); + } + + /** + * Signs user up. + * + * @return mixed + */ + public function actionSignup() + { + $model = new SignupForm(); + if ($model->load(Yii::$app->request->post())) { + if ($user = $model->signup()) { + if (Yii::$app->getUser() + ->login($user) + ) { + return $this->goHome(); + } + } + } - return $this->goHome(); + return $this->render( + 'signup', + [ + 'model' => $model, + ] + ); } - return $this->render('resetPassword', [ - 'model' => $model, - ]); - } - - /** - * Action to view robots.txt file dinamycli - * - * @return string - */ - public function actionRobots() - { - $response = \Yii::$app->response; /** - * @var Settings $settings + * Requests password reset. + * + * @return mixed */ - $settings = Settings::find() - ->one(); - $temp = tmpfile(); - fwrite($temp, $settings->robots); - $meta = stream_get_meta_data($temp); - $response->format = $response::FORMAT_RAW; - $response->headers->set('Content-Type', 'text/plain'); - return $this->renderFile($meta[ 'uri' ]); - } - - public function actionFeedback() - { - Yii::$app->response->format = Response::FORMAT_JSON; - if (empty(Yii::$app->request->post())) { - throw new BadRequestHttpException(); - } else { - $model = new Feedback(); - if ($model->load(Yii::$app->request->post()) && $model->save()) { - return [ - 'success' => true, - 'message' => 'Success message', - ]; + public function actionRequestPasswordReset() + { + $model = new PasswordResetRequestForm(); + if ($model->load(Yii::$app->request->post()) && $model->validate()) { + if ($model->sendEmail()) { + Yii::$app->session->setFlash('success', 'Check your email for further instructions.'); + + return $this->goHome(); + } else { + Yii::$app->session->setFlash( + 'error', + 'Sorry, we are unable to reset password for the provided email address.' + ); + } + } + + return $this->render( + 'requestPasswordResetToken', + [ + 'model' => $model, + ] + ); + } + + /** + * Resets password. + * + * @param string $token + * + * @return mixed + * @throws BadRequestHttpException + */ + public function actionResetPassword($token) + { + try { + $model = new ResetPasswordForm($token); + } catch (InvalidParamException $e) { + throw new BadRequestHttpException($e->getMessage()); + } + + if ($model->load(Yii::$app->request->post()) && $model->validate() && $model->resetPassword()) { + Yii::$app->session->setFlash('success', 'New password saved.'); + + return $this->goHome(); + } + + return $this->render( + 'resetPassword', + [ + 'model' => $model, + ] + ); + } + + /** + * Action to view robots.txt file dinamycli + * + * @return string + */ + public function actionRobots() + { + $response = \Yii::$app->response; + /** + * @var Settings $settings + */ + $settings = Settings::find() + ->one(); + $temp = tmpfile(); + fwrite($temp, $settings->robots); + $meta = stream_get_meta_data($temp); + $response->format = $response::FORMAT_RAW; + $response->headers->set('Content-Type', 'text/plain'); + return $this->renderFile($meta[ 'uri' ]); + } + + public function actionFeedback() + { + Yii::$app->response->format = Response::FORMAT_JSON; + if (empty( Yii::$app->request->post() )) { + throw new BadRequestHttpException(); } else { - return [ - 'success' => false, - 'error' => $model->errors, - ]; + $model = new Feedback(); + if ($model->load(Yii::$app->request->post()) && $model->save()) { + return [ + 'success' => true, + 'message' => 'Success message', + ]; + } else { + return [ + 'success' => false, + 'error' => $model->errors, + ]; + } } } } -} diff --git a/frontend/views/site/about.php b/frontend/views/site/about.php index 8eb0764..a4f962e 100644 --- a/frontend/views/site/about.php +++ b/frontend/views/site/about.php @@ -1,16 +1,115 @@ title = 'About'; -$this->params['breadcrumbs'][] = $this->title; + use yii\web\View; + + /** + * @var View $this + */ ?> -
-

title) ?>

- -

This is the About page. You may modify the following file to customize its content:

- - -
+
+
+
+ +
+

About Universal

+
+ +

Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean + ultricies mi vitae est. Mauris placerat eleifend leo.

+ +
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+

One morning, when Gregor Samsa woke from troubled dreams, he found himself transformed in his bed into a horrible vermin. He lay on his armour-like back, and if he lifted his head a little he could see + his brown belly, slightly domed and divided by arches into stiff sections.

+

One morning, when Gregor Samsa woke from troubled dreams, he found himself transformed in his bed into a horrible vermin. He lay on his armour-like back, and if he lifted his head a little he could see + his brown belly, slightly domed and divided by arches into stiff sections.

+
+
+
+
+
+
+ +
+
+
+
+ +
+
+

It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window + at the dull weather. Drops of rain could be heard hitting the pane, which made him feel quite sad.

+

It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window + at the dull weather. Drops of rain could be heard hitting the pane, which made him feel quite sad.

+
+
+
+
+
+
+ +
+
+

His room, a proper human room although a little too small, lay peacefully between its four familiar walls.

+ +

A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, + gilded frame.

+
+
+
+
+
+ +
+
+
+ +
+ +
+
+
+
+use yii\web\View; \ No newline at end of file -- libgit2 0.21.4