/**
  * Get the content title.
  *
  * @return string
  * @access private
  */
 private function content_title()
 {
     return $this->content->title() ?: 'Untitled Article';
 }
Esempio n. 2
0
 /**
  * Updates a content property.
  *
  * @access protected
  */
 protected function set_content_property($name, $value)
 {
     return $this->content->set_property($name, $value);
 }
Esempio n. 3
0
 /**
  * Gets the content nodes.
  *
  * @access protected
  * @return array
  */
 protected function content_nodes()
 {
     return $this->content->nodes();
 }