/**
  * Display photo album creation form
  *
  * @access	private
  */
 private function display_album()
 {
     if ($this->_user['album_photo']) {
         Html::nm_album('o');
         foreach ($this->_categories as $key => $value) {
             Html::category($key, $value);
         }
         Html::nm_album('c');
     }
 }