Newscoop\Entity\Article::setCommentsEnabled PHP Метод

setCommentsEnabled() публичный Метод

Set commenting en/disabled.
public setCommentsEnabled ( integer $comments_enabled )
$comments_enabled integer
    public function setCommentsEnabled($comments_enabled)
    {
        $this->comments_enabled = (int) $comments_enabled;
        return $this;
    }

Usage Example

Пример #1
0
 /**
  * Update Article static properties
  *
  * @param Article $article
  * @param array   $attributes
  *
  * @return Article
  */
 private function updateArticleMeta($article, $attributes)
 {
     if (array_key_exists('name', $attributes)) {
         $article->setName($attributes['name']);
     }
     if (array_key_exists('comments_enabled', $attributes)) {
         $article->setCommentsEnabled($attributes['comments_enabled']);
     }
     if (array_key_exists('comments_locked', $attributes)) {
         $article->setCommentsLocked($attributes['comments_locked']);
     }
     if (array_key_exists('onFrontPage', $attributes)) {
         $article->setOnFrontPage($attributes['onFrontPage']);
     }
     if (array_key_exists('onSection', $attributes)) {
         $article->setOnSection($attributes['onSection']);
     }
     if (array_key_exists('keywords', $attributes)) {
         $article->setKeywords($attributes['keywords'] ? $attributes['keywords'] : '');
     }
     return $article;
 }
All Usage Examples Of Newscoop\Entity\Article::setCommentsEnabled