예제 #1
0
파일: Edit.php 프로젝트: phpsource/idno
 function postContent()
 {
     $this->gatekeeper();
     $new = false;
     if (!empty($this->arguments)) {
         $object = \IdnoPlugins\Like\Like::getByID($this->arguments[0]);
     }
     if (empty($object)) {
         $object = new \IdnoPlugins\Like\Like();
     }
     if ($object->saveDataFromInput($this)) {
         $this->forward($object->getURL());
     }
 }
예제 #2
0
파일: Edit.php 프로젝트: jirkadus/Known
 function postContent()
 {
     $this->createGatekeeper();
     $new = false;
     if (!empty($this->arguments)) {
         $object = \IdnoPlugins\Like\Like::getByID($this->arguments[0]);
     }
     if (empty($object)) {
         $object = new \IdnoPlugins\Like\Like();
     }
     if ($object->saveDataFromInput($this)) {
         $forward = $this->getInput('forward-to', $object->getDisplayURL());
         $this->forward($forward);
     }
 }
예제 #3
0
파일: Edit.php 프로젝트: johnellison/90days
 function postContent()
 {
     $this->createGatekeeper();
     $new = false;
     if (!empty($this->arguments)) {
         $object = \IdnoPlugins\Like\Like::getByID($this->arguments[0]);
     }
     if (empty($object)) {
         $object = new \IdnoPlugins\Like\Like();
     }
     if ($object->saveDataFromInput($this)) {
         $this->forward(\Idno\Core\site()->config()->getDisplayURL() . 'content/all/');
         //$this->forward($object->getDisplayURL());
     }
 }