| @@ -27,7 +27,7 @@ discard block | ||
| 27 | 27 | // Admin account | 
| 28 | 28 | |
| 29 | 29 | |
| 30 | -        if(!Configure::read('Security.salt')) | |
| 30 | +        if (!Configure::read('Security.salt')) | |
| 31 | 31 |          { | 
| 32 | 32 |              $salt = $this->in('Salt:'); | 
| 33 | 33 | } | 
| @@ -48,8 +48,8 @@ discard block | ||
| 48 | 48 |          Configure::write('Datasources.default.quoteIdentifiers', false); | 
| 49 | 49 |          Configure::write('Datasources.default.url', env('DATABASE_URL', null)); | 
| 50 | 50 |          $file = new File('config/app_local.php', false); | 
| 51 | -        if(!$file->exists()) { | |
| 52 | -            if($ris = Configure::dump('app_local', 'default')) { | |
| 51 | +        if (!$file->exists()) { | |
| 52 | +            if ($ris = Configure::dump('app_local', 'default')) { | |
| 53 | 53 |                  $this->out("Wrote config file app_local.php"); | 
| 54 | 54 | } | 
| 55 | 55 | } | 
| @@ -117,7 +117,7 @@ discard block | ||
| 117 | 117 |      { | 
| 118 | 118 | // ask if the permissions should be changed | 
| 119 | 119 |          if ($io->isInteractive()) { | 
| 120 | -            $validator = function ($arg) { | |
| 120 | +            $validator = function($arg) { | |
| 121 | 121 |                  if (in_array($arg, ['Y', 'y', 'N', 'n'])) { | 
| 122 | 122 | return $arg; | 
| 123 | 123 | } | 
| @@ -136,7 +136,7 @@ discard block | ||
| 136 | 136 | } | 
| 137 | 137 | |
| 138 | 138 | // Change the permissions on a path and output the results. | 
| 139 | -        $changePerms = function ($path) use ($io) { | |
| 139 | +        $changePerms = function($path) use ($io) { | |
| 140 | 140 | $currentPerms = fileperms($path) & 0777; | 
| 141 | 141 | $worldWritable = $currentPerms | 0007; | 
| 142 | 142 |              if ($worldWritable == $currentPerms) { | 
| @@ -151,7 +151,7 @@ discard block | ||
| 151 | 151 | } | 
| 152 | 152 | }; | 
| 153 | 153 | |
| 154 | -        $walker = function ($dir) use (&$walker, $changePerms) { | |
| 154 | +        $walker = function($dir) use (&$walker, $changePerms) { | |
| 155 | 155 | $files = array_diff(scandir($dir), ['.', '..']); | 
| 156 | 156 |              foreach ($files as $file) { | 
| 157 | 157 | $path = $dir . '/' . $file; | 
| @@ -166,12 +166,12 @@ | ||
| 166 | 166 | /* | 
| 167 | 167 | * Setup detectors for mobile and tablet. | 
| 168 | 168 | */ | 
| 169 | -ServerRequest::addDetector('mobile', function ($request) { | |
| 169 | +ServerRequest::addDetector('mobile', function($request) { | |
| 170 | 170 | $detector = new \Detection\MobileDetect(); | 
| 171 | 171 | |
| 172 | 172 | return $detector->isMobile(); | 
| 173 | 173 | }); | 
| 174 | -ServerRequest::addDetector('tablet', function ($request) { | |
| 174 | +ServerRequest::addDetector('tablet', function($request) { | |
| 175 | 175 | $detector = new \Detection\MobileDetect(); | 
| 176 | 176 | |
| 177 | 177 | return $detector->isTablet(); | 
| @@ -1,20 +1,20 @@ discard block | ||
| 1 | 1 | <div class="row"> | 
| 2 | 2 | <nav class="navbar sticky-top navbar-expand-xl navbar-light bg-light"> | 
| 3 | 3 | <!-- Brand and toggle get grouped for better mobile display --> | 
| 4 | -		<?= $this->Html->link('FC Home', ['controller'=>'dashboard', 'action'=>'index'],['class'=>'navbar-brand']); ?> | |
| 4 | +		<?= $this->Html->link('FC Home', ['controller'=>'dashboard', 'action'=>'index'], ['class'=>'navbar-brand']); ?> | |
| 5 | 5 | <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarMain" aria-controls="navbarMain" aria-expanded="false" aria-label="Toggle navigation"> | 
| 6 | 6 | <span class="navbar-toggler-icon"></span> | 
| 7 | 7 | </button> | 
| 8 | 8 | <!-- Collect the nav links, forms, and other content for toggling --> | 
| 9 | 9 | <div class="collapse navbar-collapse" id="navbarMain"> | 
| 10 | 10 | <ul class="navbar-nav mr-auto"> | 
| 11 | -				<li class="nav-item"><?= $this->Html->link('Tickets', ['controller'=>'tickets', 'action'=>'index'],['class'=>'nav-link']); ?></li> | |
| 12 | -				<li class="nav-item"><?= $this->Html->link('Warehouses', ['controller'=>'warehouses', 'action'=>'index'],['class'=>'nav-link']); ?></li> | |
| 13 | -				<li class="nav-item"><?= $this->Html->link('Documents', ['controller'=>'documents', 'action'=>'index'],['class'=>'nav-link']); ?></li> | |
| 14 | -				<li class="nav-item"><?= $this->Html->link('Assets', ['controller'=>'assets', 'action'=>'index'],['class'=>'nav-link']); ?></li> | |
| 15 | -				<li class="nav-item"><?= $this->Html->link('Contacts', ['controller'=>'contacts', 'action'=>'index'],['class'=>'nav-link']); ?></li> | |
| 16 | -				<li class="nav-item"><?= $this->Html->link('Products', ['controller'=>'products', 'action'=>'index'],['class'=>'nav-link']); ?></li> | |
| 17 | -				<li class="nav-item"><?= $this->Html->link('Organizations', ['controller'=>'organizations', 'action'=>'index'],['class'=>'nav-link']); ?></li> | |
| 11 | +				<li class="nav-item"><?= $this->Html->link('Tickets', ['controller'=>'tickets', 'action'=>'index'], ['class'=>'nav-link']); ?></li> | |
| 12 | +				<li class="nav-item"><?= $this->Html->link('Warehouses', ['controller'=>'warehouses', 'action'=>'index'], ['class'=>'nav-link']); ?></li> | |
| 13 | +				<li class="nav-item"><?= $this->Html->link('Documents', ['controller'=>'documents', 'action'=>'index'], ['class'=>'nav-link']); ?></li> | |
| 14 | +				<li class="nav-item"><?= $this->Html->link('Assets', ['controller'=>'assets', 'action'=>'index'], ['class'=>'nav-link']); ?></li> | |
| 15 | +				<li class="nav-item"><?= $this->Html->link('Contacts', ['controller'=>'contacts', 'action'=>'index'], ['class'=>'nav-link']); ?></li> | |
| 16 | +				<li class="nav-item"><?= $this->Html->link('Products', ['controller'=>'products', 'action'=>'index'], ['class'=>'nav-link']); ?></li> | |
| 17 | +				<li class="nav-item"><?= $this->Html->link('Organizations', ['controller'=>'organizations', 'action'=>'index'], ['class'=>'nav-link']); ?></li> | |
| 18 | 18 | </ul> | 
| 19 | 19 | <!-- | 
| 20 | 20 | <form class="form-inline ml-auto"> | 
| @@ -29,7 +29,7 @@ discard block | ||
| 29 | 29 | <ul class="navbar-nav mr-auto"> | 
| 30 | 30 | <li class="nav-item dropdown"> | 
| 31 | 31 | <a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"> | 
| 32 | -						<?php if($this->request->session()->check('Auth.User')) { | |
| 32 | +						<?php if ($this->request->session()->check('Auth.User')) { | |
| 33 | 33 |  							echo $this->request->session()->read('Auth.User.email'); | 
| 34 | 34 |  						} else { | 
| 35 | 35 | echo "User profile "; | 
| @@ -47,12 +47,12 @@ discard block | ||
| 47 | 47 | <i class="fa fa-cogs" aria-hidden="true"></i> Administration <span class="caret"></span> | 
| 48 | 48 | </a> | 
| 49 | 49 | <div class="dropdown-menu" aria-labelledby="navbarDropdown"> | 
| 50 | -						<?= $this->Html->link('Users', ['controller'=>'users', 'action'=>'index'], [ 'class' =>'dropdown-item']); ?> | |
| 51 | -						<?= $this->Html->link('Types', ['controller'=>'tickettypes', 'action'=>'index'], [ 'class' =>'dropdown-item']); ?> | |
| 52 | -						<?= $this->Html->link('Statuses', ['controller'=>'ticketstatuses', 'action'=>'index'], [ 'class' =>'dropdown-item']); ?> | |
| 50 | +						<?= $this->Html->link('Users', ['controller'=>'users', 'action'=>'index'], ['class' =>'dropdown-item']); ?> | |
| 51 | +						<?= $this->Html->link('Types', ['controller'=>'tickettypes', 'action'=>'index'], ['class' =>'dropdown-item']); ?> | |
| 52 | +						<?= $this->Html->link('Statuses', ['controller'=>'ticketstatuses', 'action'=>'index'], ['class' =>'dropdown-item']); ?> | |
| 53 | 53 | </div> | 
| 54 | 54 | </li> | 
| 55 | -				<li class="nav-item"><?= $this->Html->link('<i class="fa fa-sign-out" aria-hidden="true"></i> Logout', ['controller'=>'users', 'action'=>'logout'], [ 'class'=>'nav-link', 'escape' => false ]);?></li> | |
| 55 | +				<li class="nav-item"><?= $this->Html->link('<i class="fa fa-sign-out" aria-hidden="true"></i> Logout', ['controller'=>'users', 'action'=>'logout'], ['class'=>'nav-link', 'escape' => false]); ?></li> | |
| 56 | 56 | </ul> | 
| 57 | 57 | </div><!-- /.navbar-collapse --> | 
| 58 | 58 | </nav> | 
| @@ -16,7 +16,7 @@ | ||
| 16 | 16 | </ul> | 
| 17 | 17 | </nav> | 
| 18 | 18 | <div class="col-xs-12"> | 
| 19 | - <?= $this->Form->create($user,['templates'=>'bs4form']) ?> | |
| 19 | + <?= $this->Form->create($user, ['templates'=>'bs4form']) ?> | |
| 20 | 20 | <fieldset> | 
| 21 | 21 |          <legend><?= __('Edit User') ?></legend> | 
| 22 | 22 | <?php | 
| @@ -44,7 +44,7 @@ | ||
| 44 | 44 | /** @var \Cake\Routing\RouteBuilder $routes */ | 
| 45 | 45 | $routes->setRouteClass(DashedRoute::class); | 
| 46 | 46 | |
| 47 | -$routes->scope('/', function (RouteBuilder $builder) { | |
| 47 | +$routes->scope('/', function(RouteBuilder $builder) { | |
| 48 | 48 | |
| 49 | 49 |      $builder->prefix('admin', function($routes) { | 
| 50 | 50 |          $routes->connect('/', ['controller' => 'Users', 'action' => 'index']); | 
| @@ -15,7 +15,7 @@ | ||
| 15 | 15 |      public function beforeFilter(EventInterface $event) { | 
| 16 | 16 | parent::beforeFilter($event); | 
| 17 | 17 |          //$this->Auth->allow('add','login','logout'); | 
| 18 | - $this->Authentication->addUnauthenticatedActions(['add','index','edit']); | |
| 18 | + $this->Authentication->addUnauthenticatedActions(['add', 'index', 'edit']); | |
| 19 | 19 | } | 
| 20 | 20 | |
| 21 | 21 | /** |