Added pages
This commit is contained in:
@@ -80,6 +80,39 @@ class Provider extends SecureBaseController
|
||||
return $this->providerSecurePage('product', $data);
|
||||
}
|
||||
|
||||
public function ProviderCalendar(){
|
||||
$this->product_model = new \App\Models\Product_model();
|
||||
$data = array();
|
||||
|
||||
$data['actions_history'] = [
|
||||
[
|
||||
"icon"=> "primary",
|
||||
"text"=> "Meeting with Amanda and team",
|
||||
"date"=> "10:30 Jan",
|
||||
],
|
||||
];
|
||||
|
||||
$data['product_array'] = $this->product_model->getProducts(''); // $product_array;
|
||||
return $this->renderProviderSecurePage('calendar', $data);
|
||||
}
|
||||
|
||||
public function ProviderReports(){
|
||||
$this->product_model = new \App\Models\Product_model();
|
||||
$data = array();
|
||||
|
||||
$data['actions_history'] = [
|
||||
[
|
||||
"icon"=> "primary",
|
||||
"text"=> "Meeting with Amanda and team",
|
||||
"date"=> "10:30 Jan",
|
||||
],
|
||||
];
|
||||
|
||||
$data['product_array'] = $this->product_model->getProducts(''); // $product_array;
|
||||
return $this->renderProviderSecurePage('reports', $data);
|
||||
}
|
||||
|
||||
|
||||
public function StartProcess($productId){
|
||||
|
||||
log_message('critical', "***** ***** Provider::StartProcess USER_SESSION = ".$productId );
|
||||
|
||||
Reference in New Issue
Block a user