Example #1
0
 /**
  * Flow Step Managment function
  * Component : step, stepinfo, resetstepdata,  deletestep
  * Method : ajax post get
  * @return void
  * @author joharijumali@gmail.com
  **/
 public function get_step()
 {
     $data['flow'] = Str::title(Flow::find(URI::segment(5))->flowname);
     $data['steplist'] = Menu::flowtree(URI::segment(5));
     $data['allrole'] = Role::arrayRoles();
     $data['pagelist'] = $listpage = Page::listSteppages();
     return View::make('admin::modul.step', $data);
 }