@@ -62,7 +62,7 @@ |
||
62 | 62 | public static function ul($objectRoot, $maxDeep = 0, $hrefFunc = null, $order = [], $activeFunc = '', $activeClass = 'active') { |
63 | 63 | $count = 0; |
64 | 64 | if (!$hrefFunc) { |
65 | - $hrefFunc = function($object) { |
|
65 | + $hrefFunc = function ($object) { |
|
66 | 66 | return "<a href='#'> {$object->name()}</a>"; |
67 | 67 | }; |
68 | 68 | } |
@@ -8,7 +8,7 @@ |
||
8 | 8 | * @covers Inji::unlisten |
9 | 9 | */ |
10 | 10 | public function testNotSavingEvent() { |
11 | - \Inji::$inst->listen('testEvent', 'testCallback', function() { |
|
11 | + \Inji::$inst->listen('testEvent', 'testCallback', function () { |
|
12 | 12 | return true; |
13 | 13 | }); |
14 | 14 | $this->assertEquals(true, Inji::$inst->event('testEvent')); |
@@ -5,6 +5,6 @@ |
||
5 | 5 | 'file' => 'index.html', |
6 | 6 | 'css' => ['style.css'], |
7 | 7 | 'libs' => [ |
8 | - 'JqueryUi', 'PaperTheme','FancyBox' |
|
8 | + 'JqueryUi', 'PaperTheme','FancyBox' |
|
9 | 9 | ] |
10 | 10 | ]; |
@@ -5,6 +5,6 @@ |
||
5 | 5 | 'file' => 'index.html', |
6 | 6 | 'css' => ['style.css'], |
7 | 7 | 'libs' => [ |
8 | - 'JqueryUi', 'PaperTheme','FancyBox' |
|
8 | + 'JqueryUi', 'PaperTheme', 'FancyBox' |
|
9 | 9 | ] |
10 | 10 | ]; |
@@ -5,9 +5,9 @@ discard block |
||
5 | 5 | <?php if (empty($noIndicators)) { ?> |
6 | 6 | <ol class="carousel-indicators"> |
7 | 7 | <?php |
8 | - $i = 0; |
|
9 | - for ($i = 0; $i < count($slides); $i++) { |
|
10 | - ?> |
|
8 | + $i = 0; |
|
9 | + for ($i = 0; $i < count($slides); $i++) { |
|
10 | + ?> |
|
11 | 11 | <li data-target="#<?= $id; ?>" data-slide-to="<?= $i; ?>" <?= !$i ? 'class="active"' : ''; ?>></li> |
12 | 12 | <?php |
13 | 13 | } |
@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | <!-- Wrapper for slides --> |
19 | 19 | <div class="carousel-inner" role="listbox"> |
20 | 20 | <?php |
21 | - $i = 0; |
|
22 | - foreach ($slides as $item) { |
|
23 | - ?> |
|
21 | + $i = 0; |
|
22 | + foreach ($slides as $item) { |
|
23 | + ?> |
|
24 | 24 | <div class="item <?= !$i ? 'active' : ''; ?>"> |
25 | 25 | <?= !empty($item['href']) ? "<a href = '{$item['href']}' style = 'display:inline-block;'>" : ''; ?> |
26 | 26 | <img src="<?= $item['image']; ?>" <?= !empty($item['image']) ? 'alt="' . $item['name'] . '"' : ''; ?> /> |
@@ -61,6 +61,10 @@ |
||
61 | 61 | Inji::$inst->unBlockParallel(); |
62 | 62 | } |
63 | 63 | |
64 | + /** |
|
65 | + * @param string $command |
|
66 | + * @param string $path |
|
67 | + */ |
|
64 | 68 | public static function command($command, $needOutput = true, $path = null) { |
65 | 69 | while (!Inji::$inst->blockParallel()) { |
66 | 70 | sleep(2); |
@@ -15,6 +15,9 @@ |
||
15 | 15 | |
16 | 16 | public $xml = null; |
17 | 17 | |
18 | + /** |
|
19 | + * @param \SimpleXMLElement $xml |
|
20 | + */ |
|
18 | 21 | public function __construct($xml) { |
19 | 22 | $this->xml = $xml; |
20 | 23 | } |
@@ -145,6 +145,9 @@ discard block |
||
145 | 145 | return $result[1]; |
146 | 146 | } |
147 | 147 | |
148 | + /** |
|
149 | + * @param string $source |
|
150 | + */ |
|
148 | 151 | public function parseSource($source) { |
149 | 152 | $tags = $this->parseRaw($source); |
150 | 153 | foreach ($tags as $rawTag) { |
@@ -190,6 +193,9 @@ discard block |
||
190 | 193 | return substr($source, ($pos + strlen($rawTag) + 2)); |
191 | 194 | } |
192 | 195 | |
196 | + /** |
|
197 | + * @param string $type |
|
198 | + */ |
|
193 | 199 | public function getHref($type, $params) { |
194 | 200 | $href = ''; |
195 | 201 | if (is_string($params)) { |
@@ -518,6 +524,9 @@ discard block |
||
518 | 524 | } |
519 | 525 | } |
520 | 526 | |
527 | + /** |
|
528 | + * @param string $type |
|
529 | + */ |
|
521 | 530 | public function customAsset($type, $asset, $lib = false) { |
522 | 531 | if (!$lib) { |
523 | 532 | $this->dynAssets[$type][] = $asset; |
@@ -540,6 +549,9 @@ discard block |
||
540 | 549 | } |
541 | 550 | } |
542 | 551 | |
552 | + /** |
|
553 | + * @param string $lineParams |
|
554 | + */ |
|
543 | 555 | public function widget($_widgetName, $_params = [], $lineParams = null) { |
544 | 556 | $_paths = $this->getWidgetPaths($_widgetName); |
545 | 557 | $find = false; |
@@ -311,10 +311,10 @@ |
||
311 | 311 | ?> |
312 | 312 | <script> |
313 | 313 | setInterval(function () { |
314 | - var hash = '<?=$hash;?>'; |
|
315 | - var files = '<?=http_build_query(['files' => array_keys($urls)]);?>'; |
|
314 | + var hash = '<?=$hash; ?>'; |
|
315 | + var files = '<?=http_build_query(['files' => array_keys($urls)]); ?>'; |
|
316 | 316 | var timeHash = '<?=$timeMd5?>'; |
317 | - var id = '<?=$id;?>'; |
|
317 | + var id = '<?=$id; ?>'; |
|
318 | 318 | // 1. Создаём новый объект XMLHttpRequest |
319 | 319 | var xhr = new XMLHttpRequest(); |
320 | 320 |
@@ -23,7 +23,7 @@ |
||
23 | 23 | } |
24 | 24 | |
25 | 25 | public function parseColsForModel($cols = []) { |
26 | - $modelCols = [ 'labels' => [], 'cols' => [], 'relations' => []]; |
|
26 | + $modelCols = ['labels' => [], 'cols' => [], 'relations' => []]; |
|
27 | 27 | foreach ($cols as $col) { |
28 | 28 | $modelCols['labels'][$col['code']] = $col['label']; |
29 | 29 | $colType = !empty($col['type']['primary']) ? $col['type']['primary'] : $col['type']; |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -return function ($step = NULL, $params = []) { |
|
3 | +return function ($step = null, $params = []) { |
|
4 | 4 | |
5 | 5 | }; |