Example #1
0
 /**
  * Brief Description.
  * Complete Description.
  *
  * @param $msg (tipo) desc
  * @param $goto' (tipo) desc
  * @param $event='' (tipo) desc
  * @param $halt= (tipo) desc
  *
  * @returns (tipo) desc
  *
  */
 public static function information($msg, $goto = '', $event = '', $halt = true)
 {
     self::$instance->prompt(MPrompt::information($msg, $goto, $event), $halt);
 }
Example #2
0
 /**
  * Brief Description.
  * Complete Description.
  *
  * @returns (tipo) desc
  *
  */
 public function generateInfos()
 {
     $prompt = MPrompt::information($this->infos, 'NONE', _M('Information'));
     //return $prompt;
     Manager::getFrontController()->getController()->renderPrompt($prompt);
 }