/**
  * Class constructor
  *
  * @access	public
  */
 public function __construct()
 {
     parent::__construct();
     parent::build_title();
     $this->_menu = array('Description of website author(s)');
     $this->get_content();
 }
 /**
  * Class constructor
  *
  * @access	public
  */
 public function __construct()
 {
     parent::__construct();
     $this->build_search();
     $this->get_content();
     $this->build_menu();
     parent::build_title();
 }
 /**
  * Class constructor
  *
  * @access	public
  */
 public function __construct()
 {
     parent::__construct();
     parent::build_title();
     $this->_menu = array('You can use this form to contact an author');
     $this->get_users();
     $this->send();
 }
 /**
  * Class constructor
  *
  * @access	public
  */
 public function __construct()
 {
     parent::__construct();
     if (VGet::news()) {
         $this->_view_type = 'news';
     } else {
         $this->_view_type = 'listing';
     }
     Helper\Helper::get_categories($this->_menu);
     $this->build_menu();
     $this->get_content();
     $this->get_nb_pages();
     parent::build_title();
 }
 /**
  * Redefine master method for the title
  *
  * @access	protected
  */
 protected function build_title()
 {
     parent::build_title();
     if (VGet::album() && !empty($this->_album)) {
         $this->_title = ucwords($this->_album->_name);
     }
 }