コード例 #1
0
ファイル: ViewsArticle.php プロジェクト: Xackery/coop
 public function execute($article_id)
 {
     return $this->_article->get_by_id($article_id);
 }
コード例 #2
0
ファイル: CreatesArticle.php プロジェクト: Xackery/coop
 public function execute($article_fields)
 {
     $article = new Entity_Article($article_fields);
     return $this->_article->create($article);
 }