FEAT_SKELETON_DASH_NOTIFICATIONS
This commit is contained in:
parent
baf5b46484
commit
68ac24bde5
@ -22,6 +22,11 @@ class DashboardController extends AdminController
|
|||||||
echo view('layout/footer');
|
echo view('layout/footer');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function dashboardNotifications()
|
||||||
|
{
|
||||||
|
//pull notofications to dashboard especially for file upload cases
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
26
app/Controllers/PendingActionsController.php
Normal file
26
app/Controllers/PendingActionsController.php
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Controllers;
|
||||||
|
|
||||||
|
use CodeIgniter\HTTP\IncomingRequest;
|
||||||
|
use CodeIgniter\HTTP\RequestInterface;
|
||||||
|
use CodeIgniter\HTTP\ResponseInterface;
|
||||||
|
use Psr\Log\LoggerInterface;
|
||||||
|
|
||||||
|
class PendingActionsController extends AdminController
|
||||||
|
{
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function getPendingActions()
|
||||||
|
{
|
||||||
|
//get pending actions like inception, corrections,deletions,SI enhanccnement to users
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user