@@ -84,7 +84,7 @@ |
||
| 84 | 84 | */ |
| 85 | 85 | public function isShown() |
| 86 | 86 | { |
| 87 | - return $this->getBackendUser()->isAdmin();# && GeneralUtility::getApplicationContext()->isDevelopment(); |
|
| 87 | + return $this->getBackendUser()->isAdmin(); # && GeneralUtility::getApplicationContext()->isDevelopment(); |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | /** |
@@ -57,8 +57,7 @@ |
||
| 57 | 57 | { |
| 58 | 58 | // Resolve the table name. |
| 59 | 59 | self::$currentTable = $tableNameOrContentObject instanceof Content ? |
| 60 | - $tableNameOrContentObject->getDataType() : |
|
| 61 | - $tableNameOrContentObject; |
|
| 60 | + $tableNameOrContentObject->getDataType() : $tableNameOrContentObject; |
|
| 62 | 61 | return $this; |
| 63 | 62 | } |
| 64 | 63 | |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | * https://github.com/t3elmar/Ext |
| 9 | 9 | *********************************************************************/ |
| 10 | 10 | |
| 11 | -$EM_CONF[$_EXTKEY] = array ( |
|
| 11 | +$EM_CONF[$_EXTKEY] = array( |
|
| 12 | 12 | 'title' => 'Versatile and Interactive Display - List Component', |
| 13 | 13 | 'description' => 'Generic listing of records with versatile ways of interacting with the data, e.g. advanced filter, inline editing, mass editing, ... Veni, vidi, vici!', |
| 14 | 14 | 'category' => 'module', |
@@ -21,18 +21,18 @@ discard block |
||
| 21 | 21 | 'clearCacheOnLoad' => 0, |
| 22 | 22 | 'version' => '2.1.0-dev', |
| 23 | 23 | 'constraints' => |
| 24 | - array ( |
|
| 24 | + array( |
|
| 25 | 25 | 'depends' => |
| 26 | - array ( |
|
| 26 | + array( |
|
| 27 | 27 | 'cms' => '', |
| 28 | 28 | 'fluid' => '', |
| 29 | 29 | 'typo3' => '7.5.0-7.99.99', |
| 30 | 30 | ), |
| 31 | 31 | 'conflicts' => |
| 32 | - array ( |
|
| 32 | + array( |
|
| 33 | 33 | ), |
| 34 | 34 | 'suggests' => |
| 35 | - array ( |
|
| 35 | + array( |
|
| 36 | 36 | ), |
| 37 | 37 | ) |
| 38 | 38 | ); |
@@ -57,8 +57,7 @@ |
||
| 57 | 57 | { |
| 58 | 58 | // Resolve the table name. |
| 59 | 59 | self::$currentTable = $tableNameOrContentObject instanceof Content ? |
| 60 | - $tableNameOrContentObject->getDataType() : |
|
| 61 | - $tableNameOrContentObject; |
|
| 60 | + $tableNameOrContentObject->getDataType() : $tableNameOrContentObject; |
|
| 62 | 61 | return $this; |
| 63 | 62 | } |
| 64 | 63 | |