Example #1
0
 /**
  * loads the view
  *
  * @param string $view the view to load
  */
 function __flmView($view = '')
 {
     //profiling
     $this->data['controller_profiling'][] = __FUNCTION__;
     //template::
     $this->data['template_file'] = help_verify_template($this->data['template_file']);
     //complete the view
     $this->__commonAll_View($view);
 }
Example #2
0
 /**
  * loads the view
  *
  * @param string $view the view to load
  */
 function __flmView($view = '')
 {
     //profiling
     $this->data['controller_profiling'][] = __FUNCTION__;
     //template::
     $this->data['template_file'] = help_verify_template($this->data['template_file']);
     //post data
     $this->data['post'] = $_POST;
     //get data
     $this->data['get'] = $_GET;
     //url segmets array
     $this->data['url_segments'] = $this->uri->segment_array();
     $this->load->view($view, array('data' => $this->data));
 }