@@ -92,7 +92,7 @@ |
||
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | $categorys = \Materials\Category::getList(['where' => ['parent_id', 0]]); |
| 95 | - $scan = function($category, $scan) { |
|
| 95 | + $scan = function ($category, $scan) { |
|
| 96 | 96 | $map = []; |
| 97 | 97 | |
| 98 | 98 | foreach ($category->items as $mat) { |
@@ -1,10 +1,10 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | return [ |
| 3 | - 'accessCheck' => function() { |
|
| 3 | + 'accessCheck' => function () { |
|
| 4 | 4 | $dataManager = new \Ui\DataManager('Materials\Material'); |
| 5 | 5 | return $dataManager->checkAccess(); |
| 6 | 6 | }, |
| 7 | - 'widget' => function() { |
|
| 7 | + 'widget' => function () { |
|
| 8 | 8 | ?> |
| 9 | 9 | <div class="panel panel-default"> |
| 10 | 10 | <div class="panel-heading">Материалы</div> |
@@ -1,10 +1,10 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | $tree = new Ui\Tree(); |
| 4 | -$tree->itemBodyFn = function($category) { |
|
| 4 | +$tree->itemBodyFn = function ($category) { |
|
| 5 | 5 | return Html::el('a', ['href' => $category->getHref()], $category->name()); |
| 6 | 6 | }; |
| 7 | -$tree->itemActiveCheck = function($curCategory) use($category) { |
|
| 7 | +$tree->itemActiveCheck = function ($curCategory) use($category) { |
|
| 8 | 8 | return $curCategory->id == $category->id || strpos($curCategory->tree_path, "/{$category->id}/") !== false; |
| 9 | 9 | }; |
| 10 | 10 | $tree->draw($category->getRoot()); |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | $category = []; |
| 5 | 5 | } |
| 6 | 6 | $tree = new Ui\Tree(); |
| 7 | - $tree->ul('\Ecommerce\Category', 0, function($categoryItem) use($category) { |
|
| 7 | + $tree->ul('\Ecommerce\Category', 0, function ($categoryItem) use($category) { |
|
| 8 | 8 | if ($category && $category->id == $categoryItem->id) { |
| 9 | 9 | $class = 'active'; |
| 10 | 10 | } else { |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | return [ |
| 12 | 12 | 'classes' => ['Ui\ActiveForm'], |
| 13 | - 'get' => function($element) { |
|
| 13 | + 'get' => function ($element) { |
|
| 14 | 14 | $access = null; |
| 15 | 15 | $path = [ |
| 16 | 16 | 'models', |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | return [ |
| 12 | 12 | 'classes' => ['Ui\DataManager'], |
| 13 | - 'get' => function($element) { |
|
| 13 | + 'get' => function ($element) { |
|
| 14 | 14 | $access = null; |
| 15 | 15 | $path = [ |
| 16 | 16 | 'models', |
@@ -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 | } |
@@ -716,7 +716,7 @@ |
||
| 716 | 716 | return []; |
| 717 | 717 | } |
| 718 | 718 | $tree = new Tree(); |
| 719 | - $tree->ul($this->managerOptions['categorys']['model'], 0, function($category) { |
|
| 719 | + $tree->ul($this->managerOptions['categorys']['model'], 0, function ($category) { |
|
| 720 | 720 | $path = $category->tree_path . ($category->pk() ? $category->pk() . "/" : ''); |
| 721 | 721 | $cleanClassName = str_replace('\\', '\\\\', get_class($category)); |
| 722 | 722 | return "<a href='#' onclick='inji.Ui.dataManagers.get(this).switchCategory(this);return false;' data-index='{$category->index()}' data-path ='{$path}' data-id='{$category->pk()}' data-model='{$this->managerOptions['categorys']['model']}'> {$category->name}</a> |
@@ -396,6 +396,9 @@ |
||
| 396 | 396 | return $rows; |
| 397 | 397 | } |
| 398 | 398 | |
| 399 | + /** |
|
| 400 | + * @param DataManager $dataManager |
|
| 401 | + */ |
|
| 399 | 402 | public static function drawCol($item, $colName, $params = [], $dataManager = null, $originalCol = '', $originalItem = null) { |
| 400 | 403 | $modelName = get_class($item); |
| 401 | 404 | if (!class_exists($modelName)) { |
@@ -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')); |