Skip to content
This repository was archived by the owner on Aug 15, 2023. It is now read-only.

Commit 06800ef

Browse files
committed
Merge branch 'master' into develop
2 parents a5ec24c + 730b13f commit 06800ef

File tree

6 files changed

+7
-113
lines changed

6 files changed

+7
-113
lines changed

Classes/Command/CacheApiCommandController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function injectCacheApiService(\Etobi\CoreAPI\Service\CacheApiService $ca
8484
public function clearAllCachesCommand($hard = false) {
8585
$this->cacheApiService->clearAllCaches($hard);
8686
$message = 'All caches have been cleared%s.';
87-
$this->logger->info(sprintf($message, $hard ? ' hard' : ''));
87+
$this->logger->info($message);
8888
$this->outputLine($message, $hard ? array(' hard') : array(''));
8989
}
9090

@@ -158,4 +158,4 @@ public function clearAllExceptPageCacheCommand() {
158158
$this->logger->info($message);
159159
$this->outputLine($message);
160160
}
161-
}
161+
}

Classes/Command/ConfigurationApiCommandController.php

Lines changed: 0 additions & 61 deletions
This file was deleted.

Classes/Service/ConfigurationApiService.php

Lines changed: 0 additions & 43 deletions
This file was deleted.

ext_autoload.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
'Etobi\CoreAPI\Command\SiteApiCommandController' => $extensionClassesPath . 'Command/SiteApiCommandController.php',
1010
'Etobi\CoreAPI\Command\CacheApiCommandController' => $extensionClassesPath . 'Command/CacheApiCommandController.php',
1111
'Etobi\CoreAPI\Command\ExtensionApiCommandController' => $extensionClassesPath . 'Command/ExtensionApiCommandController.php',
12-
'Etobi\CoreAPI\Command\ConfigurationApiCommandController' => $extensionClassesPath . 'Command/ConfigurationApiCommandController.php',
1312
'Etobi\CoreAPI\Service\CacheApiService' => $extensionClassesPath . 'Service/CacheApiService.php',
1413
'Etobi\CoreAPI\Service\SiteApiService' => $extensionClassesPath . 'Service/SiteApiService.php',
1514
'Etobi\CoreAPI\Service\DatabaseApiService' => $extensionClassesPath . 'Service/DatabaseApiService.php',

ext_emconf.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
'modify_tables' => '',
1818
'clearCacheOnLoad' => 0,
1919
'lockType' => '',
20-
'version' => '1.1.1',
20+
'version' => '1.2.0',
2121
'constraints' => array(
2222
'depends' => array(
23-
'typo3' => '6.2.0-6.2.99',
24-
'extbase' => '6.2.0-6.2.99',
25-
'fluid' => '6.2.0-6.2.99',
23+
'typo3' => '6.2.0-7.99.99',
24+
'extbase' => '6.2.0-7.99.99',
25+
'fluid' => '6.2.0-7.99.99',
2626
),
2727
'conflicts' => array(
2828
),

ext_localconf.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@
88
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['extbase']['commandControllers'][] = 'Etobi\CoreAPI\Command\CacheApiCommandController';
99
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['extbase']['commandControllers'][] = 'Etobi\CoreAPI\Command\SiteApiCommandController';
1010
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['extbase']['commandControllers'][] = 'Etobi\CoreAPI\Command\ExtensionApiCommandController';
11-
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['extbase']['commandControllers'][] = 'Etobi\CoreAPI\Command\ConfigurationApiCommandController';
12-
}
11+
}

0 commit comments

Comments
 (0)