/**
  * Display page content
  *
  * @access	public
  */
 public function display_content()
 {
     $this->display_menu();
     if ($this->_user['settings']) {
         echo $this->_action_msg;
         Html::form('o', 'post', '#');
         $this->display_form();
         Html::form('c');
     } else {
         echo ActionMessages::part_no_perm();
     }
 }
 /**
  * Display page content
  *
  * @access	public
  */
 public function display_content()
 {
     $this->display_menu();
     echo $this->_action_msg;
     Html::form('o', 'post', '#');
     $this->display_name();
     $this->display_avatar();
     $this->display_contact_info();
     $this->display_about();
     echo '<br/>';
     Html::up_update();
     Html::form('c');
 }