@@ -11,10 +11,10 @@ |
||
11 | 11 | { |
12 | 12 | parent::configureOptions($resolver); |
13 | 13 | $resolver->setRequired('LinkTextField'); |
14 | - $resolver->setDefault('AltTextField', function (Options $options) { |
|
14 | + $resolver->setDefault('AltTextField', function(Options $options) { |
|
15 | 15 | return $options['LinkTextField']; |
16 | 16 | }); |
17 | - $resolver->setDefault('UrlField', function (Options $options) { |
|
17 | + $resolver->setDefault('UrlField', function(Options $options) { |
|
18 | 18 | return $options['LinkTextField']; |
19 | 19 | }); |
20 | 20 | $resolver->setDefault('UrlCallback', function($value, $row) { |
@@ -10,7 +10,7 @@ |
||
10 | 10 | { |
11 | 11 | $builder = new ColumnBuilder(); |
12 | 12 | |
13 | - for ($i=0;$i<3;$i++) { |
|
13 | + for ($i = 0; $i<3; $i++) { |
|
14 | 14 | $builder->add("testcolumn".$i, new Column("test column ".$i)); |
15 | 15 | } |
16 | 16 |
@@ -15,7 +15,7 @@ |
||
15 | 15 | public function testFormatCellUsesCallback() |
16 | 16 | { |
17 | 17 | $column = new Column("test"); |
18 | - $column->setFormatValueCallback(function($val, $row){ |
|
18 | + $column->setFormatValueCallback(function($val, $row) { |
|
19 | 19 | return $val.'ok'; |
20 | 20 | }); |
21 | 21 |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | trait UsesContainerTrait |
13 | 13 | { |
14 | - protected function compileContainer(ContainerBuilder $container, $loadExt=true) |
|
14 | + protected function compileContainer(ContainerBuilder $container, $loadExt = true) |
|
15 | 15 | { |
16 | 16 | if ($loadExt) { |
17 | 17 | $extension = new CrossKnowledgeDataTableExtension(); |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | //From https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Tests/bootstrap.php |
4 | -if (!($loader = @include __DIR__ . '/../vendor/autoload.php')) { |
|
4 | +if (!($loader = @include __DIR__.'/../vendor/autoload.php')) { |
|
5 | 5 | echo <<<EOT |
6 | 6 | You need to install the project dependencies using Composer: |
7 | 7 | $ wget http://getcomposer.org/composer.phar |
@@ -16,7 +16,7 @@ |
||
16 | 16 | protected function getFunctionByName(\Twig_Extension $extension, $name) |
17 | 17 | { |
18 | 18 | foreach ($extension->getFunctions() as $function) { |
19 | - if ($function->getName()==$name) { |
|
19 | + if ($function->getName() == $name) { |
|
20 | 20 | return $function; |
21 | 21 | } |
22 | 22 | } |
@@ -31,7 +31,7 @@ |
||
31 | 31 | $value = $rawValue; |
32 | 32 | } |
33 | 33 | |
34 | - $colVal = $column->formatCell($value, $row, $context);//Column definition |
|
34 | + $colVal = $column->formatCell($value, $row, $context); //Column definition |
|
35 | 35 | $newRow[$colIdentifier] = $colVal; |
36 | 36 | } |
37 | 37 |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | * @var array |
15 | 15 | */ |
16 | 16 | public static $clientSideColumnOptions = [ |
17 | - 'cellType','className','contentPadding', 'createdCell', 'data', 'defaultContent', 'name', 'orderable', |
|
17 | + 'cellType', 'className', 'contentPadding', 'createdCell', 'data', 'defaultContent', 'name', 'orderable', |
|
18 | 18 | 'orderData', 'orderDataType', 'render', 'searchable', 'title', 'type', 'visible', 'width' |
19 | 19 | ]; |
20 | 20 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | protected $formatValueCallback; |
35 | 35 | |
36 | - public function __construct($title='', $options=[]) |
|
36 | + public function __construct($title = '', $options = []) |
|
37 | 37 | { |
38 | 38 | $this->optionsResolver = new OptionsResolver(); |
39 | 39 | $this->configureOptions($this->optionsResolver); |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | { |
95 | 95 | if (is_callable($this->formatValueCallback)) { |
96 | 96 | return call_user_func_array($this->formatValueCallback, [$value, $rowData, $context]); |
97 | - } else{ |
|
97 | + } else { |
|
98 | 98 | return $value; |
99 | 99 | } |
100 | 100 | } |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | /** |
110 | 110 | * @param \Closure $callback |
111 | 111 | */ |
112 | - public function setFormatValueCallback(\Closure $callback=null) |
|
112 | + public function setFormatValueCallback(\Closure $callback = null) |
|
113 | 113 | { |
114 | 114 | $this->formatValueCallback = $callback; |
115 | 115 | return $this; |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | abstract class AbstractTable |
19 | 19 | { |
20 | - const VIEW_CONTEXT = 'view'; |
|
20 | + const VIEW_CONTEXT = 'view'; |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * @var Router |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * |
141 | 141 | * @param OptionsResolver $resolver |
142 | 142 | */ |
143 | - public function configureOptions(OptionsResolver $resolver){} |
|
143 | + public function configureOptions(OptionsResolver $resolver) {} |
|
144 | 144 | /** |
145 | 145 | * @return array |
146 | 146 | */ |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | { |
181 | 181 | $t = []; |
182 | 182 | foreach ($this->getDataIterator() as $item) { |
183 | - $formatted = $this->formatter->formatRow($item, $this, $context); |
|
183 | + $formatted = $this->formatter->formatRow($item, $this, $context); |
|
184 | 184 | $t[] = $formatted; |
185 | 185 | } |
186 | 186 | |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | */ |
220 | 220 | public function getFilterForm() |
221 | 221 | { |
222 | - if (null===$this->filterForm) { |
|
222 | + if (null === $this->filterForm) { |
|
223 | 223 | $this->filterForm = $this->buildFilterForm( |
224 | 224 | $this->formFactory->createNamedBuilder($this->getTableId().'_filter') |
225 | 225 | ->add('dofilter', 'button') |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | */ |
272 | 272 | public function getColumns($context = self::VIEW_CONTEXT) |
273 | 273 | { |
274 | - if(!array_key_exists($context, $this->columns)) { |
|
274 | + if (!array_key_exists($context, $this->columns)) { |
|
275 | 275 | $this->initColumnsDefinitions($context); |
276 | 276 | } |
277 | 277 | return $this->columns[$context]; |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | $this->buildColumns($builder, $context); |
287 | 287 | |
288 | 288 | $this->columns[$context] = $builder->getColumns(); |
289 | - $this->columnsInitialized[$context] = true; |
|
289 | + $this->columnsInitialized[$context] = true; |
|
290 | 290 | } |
291 | 291 | /** |
292 | 292 | * Sets the table identifier |