| Current Path : /var/www/html/petpassportv2/common/components/ |
| Current File : /var/www/html/petpassportv2/common/components/FirstTimeSetup.php |
<?php
namespace common\components;
class FirstTimeSetup
{
public function __construct($siteController, $route)
{
if($this->isFirstTime()) {
$siteController->redirect($route);
}
}
/** check if firsttime setup **/
public function isFirstTime() {
///access database
}
}