Test Failed
Push — master ( e3c39f...fe570d )
by Mihail
07:20
created

Apps/View/Admin/default/application/index.php (1 issue)

Check for conflicting imported classes with local classes.

Bug Major
1
<?php
2
3
use Ffcms\Core\Helper\Date;
4
use Ffcms\Core\Helper\Type\Str;
5
use Ffcms\Templex\Url\Url;
0 ignored issues
show
This use statement conflicts with another class in this namespace, Url. Consider defining an alias.

Let?s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let?s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
6
7
/** @var \Ffcms\Templex\Template\Template $this */
8
/** @var \Apps\ActiveRecord\App[] $apps */
9
10
$this->layout('_layouts/default', [
11
    'title' => __('Applications'),
12
    'breadcrumbs' => [
13
        Url::to('main/index') => __('Main'),
14
        __('Applications')
15
    ]
16
]);
17
?>
18
19
<?php $this->start('body') ?>
20
<h1><?= __('List of applications'); ?></h1>
21
<?php
22
$table = $this->table(['class' => 'table table-striped'])
23
    ->head([
24
        ['text' => '#'],
25
        ['text' => __('Application')],
26
        ['text' => __('User interface')],
27
        ['text' => __('Version')],
28
        ['text' => __('Activity')],
29
        ['text' => __('Actions')]
30
    ]);
31
32
foreach ($apps as $app) {
33
    if ($app->type !== 'app') {
34
        continue;
35
    }
36
    $controller = Str::lowerCase($app->sys_name);
37
    $route = $controller . '/index';
38
    $icoStatus = null;
39
    $actions = $this->fetch('application/_actions', ['controller' => $controller]);
40
    // set action icons based on app status
41
    if ((bool)$app->disabled) {
42
        $icoStatus = ' <i class="fa fa-pause" style="color: #ff0000;"></i>';
43
    } elseif (!$app->checkVersion()) {
44
        $icoStatus = ' <i class="fa fa-exclamation-circle" style="color: #ffbd26;"></i>';
45
        $actions = Url::a(['application/update', [$controller]], '<i class="fa fa-wrench"></i>', ['html' => true]);
46
    } else {
47
        $icoStatus = ' <i class="fa fa-check" style="color: #008000;"></i>';
48
    }
49
50
    $table->row([
51
        ['text' => $app->id . $icoStatus, 'html' => true],
52
        ['text' => Url::a([$route], $app->getLocaleName()), 'html' => true],
53
        ['text' => '<a target="_blank" href="' . \App::$Alias->scriptUrl . '/' . Str::lowerCase($route) . '">' . $route . '</a>', 'html' => true],
54
        ['text' => $app->version],
55
        ['text' => Date::convertToDatetime($app->updated_at, Date::FORMAT_TO_HOUR)],
56
        ['text' => $actions, 'html' => true]
57
    ]);
58
}
59
?>
60
61
<div class="table-responsive">
62
    <?= $table->display() ?>
63
</div>
64
<?= Url::a(['application/install'], '<i class="fa fa-tasks"></i> ' . __('Install app'), ['class' => 'btn btn-primary', 'html' => true]) ?>
65
<?php $this->stop() ?>