/**
  * A custom method within the Plugin to generate the content
  * 
  * @return string : HTML form
  * @see class/Project.class.php
  */
 function generateAddProjectBlock()
 {
     $output = '';
     $output .= '<div class="percent95">';
     $do_project_add = new Project();
     $output .= $do_project_add->getProjectAddForm();
     $output .= '</div>';
     return $output;
 }