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

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

Labels
Severity
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[] $widgets */
9
10
$this->layout('_layouts/default', [
11
    'title' => __('Widgets'),
12
    'breadcrumbs' => [
13
        Url::to('main/index') => __('Main'),
14
        __('Widgets')
15
    ]
16
]);
17
?>
18
19
<?php $this->start('body') ?>
20
<h1><?= __('Widgets list'); ?></h1>
21
<?php
22
$table = $this->table(['class' => 'table table-striped'])
23
    ->head([
24
        ['text' => '#'],
25
        ['text' => __('Widget')],
26
        ['text' => __('Version')],
27
        ['text' => __('Activity')],
28
        ['text' => __('Actions')]
29
    ]);
30
31
32
foreach ($widgets as $widget) {
33
    $controller = Str::lowerCase($widget->sys_name);
34
    $route = $controller . '/index';
35
    $icoStatus = null;
36
    $actions = $this->fetch('widget/_actions', ['controller' => $controller]);
37
    if ((bool)$widget->disabled) {
38
        $icoStatus = ' <i class="fa fa-pause" style="color: #ff0000;"></i>';
39
    } elseif (!$widget->checkVersion()) {
40
        $icoStatus = ' <i class="fa fa-exclamation-circle" style="color: #ffbd26;"></i>';
41
        $actions = Url::a(['widget/update', [$controller]], '<i class="fa fa-wrench"></i>', ['html' => true]);
42
    } else {
43
        $icoStatus = ' <i class="fa fa-check" style="color: #008000;"></i>';
44
    }
45
46
    $table->row([
47
        ['text' => $widget->id . $icoStatus, 'html' => true],
48
        ['text' => Url::a([$route], $widget->getLocaleName()), 'html' => true],
49
        ['text' => $widget->version],
50
        ['text' => Date::convertToDatetime($widget->updated_at, Date::FORMAT_TO_HOUR)],
51
        ['text' => $actions, 'html' => true]
52
    ]);
53
}
54
?>
55
56
<div class="table-responsive">
57
    <?= $table->display() ?>
58
</div>
59
60
<?= Url::a(['widget/install'], '<i class="fa fa-tasks"></i> ' . __('Install'), ['class' => 'btn btn-primary', 'html' => true]) ?>
61
<?php $this->stop() ?>