Exemplo n.º 1
0
 /**
  * Edit comment
  * @return void
  */
 public function actionEdit($id)
 {
     // authorization
     $this->checkAuth();
     $data = array();
     $data['page_title'] = 'Edit comment';
     $comment = $this->db->comment[$id];
     if (!$comment) {
         $this->notFound();
     }
     // Form
     $form = new Forms('commentEdit');
     $form->successMessage = 'Comment was saved.';
     $form->errorMessage = 'Error while saving comment. Try it later.';
     $form->addInput('text', 'name', 'Author', false, $comment['name']);
     $form->addInput('email', 'email', 'E-mail', true, $comment['email']);
     $form->addTextArea('comment', 'Comment', true, $comment['comment'], 2);
     $form->addSubmit('save', 'Save');
     if ($form->isValid()) {
         $auth = new Auth($this->db);
         $saveData = $form->values();
         $saveData['updated'] = new NotORM_Literal("NOW()");
         $commentSave = $comment->update($saveData);
         if ($commentSave) {
             $this->addMessage('success', 'Comment saved');
             $this->redirect('admin/comments');
         } else {
             $form->error();
         }
     }
     $data['editForm'] = $form->formHtml();
     $data['isAdmin'] = true;
     $this->renderTemplate('comment/edit', $data);
 }
Exemplo n.º 2
0
 /**
  * Admin - edit post
  * 
  * @param  integer $id ID of post
  * @return void
  */
 public function actionEdit($id = null)
 {
     // authorization
     $this->checkAuth();
     $data = array();
     $data['page_title'] = 'New post';
     $post = array('title' => '', 'uri' => '', 'annotation' => '', 'content' => '', 'category_id' => '');
     if (!is_null($id)) {
         $post = $this->db->post[$id];
         if ($post) {
             $data['page_title'] = 'Edit post';
         } else {
             $this->notFound();
         }
     }
     // Form
     $form = new Forms('postEdit');
     $form->successMessage = 'Your post was saved.';
     $form->errorMessage = 'Error while saving post. Try it later.';
     $form->addInput('text', 'title', 'Title', true, $post['title']);
     $form->addInput('text', 'uri', 'URI', false, $post['uri']);
     // categories
     $categories = array('' => '= Choose category =');
     foreach ($this->db->category() as $category) {
         $categories[$category['id']] = $category['title'];
     }
     $form->addSelect('category_id', 'Category', $categories, true, $post['category_id']);
     $form->addTextArea('annotation', 'Annotation', true, $post['annotation']);
     $form->addTextArea('content', 'Content', true, $post['content']);
     $form->addSubmit('save', 'Save');
     if ($form->isValid()) {
         $auth = new Auth($this->db);
         $saveData = $form->values();
         $saveData['uri'] = trim($saveData['uri']);
         if ($saveData['uri'] == "") {
             $saveData['uri'] = $saveData['title'];
         }
         $saveData['uri'] = $this->text2url($saveData['uri']);
         $saveData['user_id'] = $auth->userInfo()->id;
         $saveData['updated'] = new NotORM_Literal("NOW()");
         if (is_null($id)) {
             $saveData['created'] = new NotORM_Literal("NOW()");
             $postSave = $this->db->post()->insert($saveData);
         } else {
             $postSave = $this->db->post[$id]->update($saveData);
         }
         if ($postSave) {
             $this->addMessage('success', 'Post saved');
             $this->redirect('admin');
             // $form->success();
         } else {
             $form->error();
         }
     }
     $data['editForm'] = $form->formHtml();
     $data['isAdmin'] = true;
     $this->renderTemplate('post/edit', $data);
 }
Exemplo n.º 3
0
 /**
  * Edit category
  * @return void
  */
 public function actionEdit($id = null)
 {
     // authorization
     $this->checkAuth();
     $data = array();
     $data['page_title'] = 'New category';
     $category = array('title' => '', 'uri' => '');
     if (!is_null($id)) {
         $category = $this->db->category[$id];
         if ($category) {
             $data['page_title'] = 'Edit category';
         } else {
             $this->notFound();
         }
     }
     // Form
     $form = new Forms('categoryEdit');
     $form->successMessage = 'Your category was saved.';
     $form->errorMessage = 'Error while saving category. Try it later.';
     $form->addInput('text', 'title', 'Title', true, $category['title']);
     $form->addInput('text', 'uri', 'URI', false, $category['uri']);
     $form->addSubmit('save', 'Save');
     if ($form->isValid()) {
         $auth = new Auth($this->db);
         $saveData = $form->values();
         $saveData['uri'] = trim($saveData['uri']);
         if ($saveData['uri'] == "") {
             $saveData['uri'] = $saveData['title'];
         }
         $saveData['uri'] = $this->text2url($saveData['uri']);
         $saveData['updated'] = new NotORM_Literal("NOW()");
         if (is_null($id)) {
             $categorySave = $this->db->category()->insert($saveData);
         } else {
             $categorySave = $this->db->category[$id]->update($saveData);
         }
         if ($categorySave) {
             $this->addMessage('success', 'Category saved');
             $this->redirect('admin/categories');
             // $form->success();
         } else {
             $form->error();
         }
     }
     $data['editForm'] = $form->formHtml();
     $data['isAdmin'] = true;
     $this->renderTemplate('category/edit', $data);
 }
Exemplo n.º 4
0
 /**
  * Create user
  * @return void
  */
 public function actionRegister()
 {
     // if user is logged in, redirect to main page
     if ($this->checkLogin()) {
         $this->redirect('admin');
     }
     $form = new Forms('create');
     $form->successMessage = 'Account succesfully created.';
     $form->errorMessage = 'Error while creating account. Try it later.';
     $form->addInput('text', 'name', 'Full name', true);
     $form->addInput('email', 'email', 'E-mail', true);
     $form->addInput('password', 'password', 'Password', true);
     $form->addSubmit('create', 'Create account');
     if ($form->isValid()) {
         $formValues = $form->values();
         $userCheck = $this->db->user()->where('email', $formValues['email'])->count('id');
         if ($userCheck > 0) {
             $form->addMessage('warning', 'User with e-mail ' . $formValues['email'] . ' exists. LogIn or type other e-mail.');
         } else {
             $auth = new Auth($this->db);
             if ($auth->addUser($formValues['email'], $formValues['password'], $formValues['name'])) {
                 $auth->checkUser($formValues['email'], $formValues['password']);
                 $this->redirect('admin');
             } else {
                 $form->error();
             }
         }
     }
     $data['registerForm'] = $form->formHtml();
     $this->renderTemplate('admin/register', $data);
 }