Bug #21063 » rtehtmlarea_feature_11966.patch
typo3/sysext/rtehtmlarea/hooks/clearrtecache/class.tx_rtehtmlarea_clearcachemenu.php (copie de travail) | ||
---|---|---|
* @return void
|
||
*/
|
||
public function manipulateCacheActions(&$cacheActions, &$optionValues) {
|
||
// Add new cache menu item
|
||
$title = $GLOBALS['LANG']->sL('LLL:EXT:rtehtmlarea/hooks/clearrtecache/locallang.xml:title');
|
||
$cacheActions[] = array(
|
||
'id' => 'clearRTECache',
|
||
'title' => $title,
|
||
'href' => $GLOBALS['BACK_PATH'] . 'ajax.php?ajaxID=rtehtmlarea::clearTempDir',
|
||
'icon' => '<img'.t3lib_iconWorks::skinImg($GLOBALS['BACK_PATH'], 'sysext/rtehtmlarea/hooks/clearrtecache/clearrtecache.png', 'width="16" height="16"').' title="'.$title.'" alt="'.$title.'" />'
|
||
//'icon' => '<img src="' . t3lib_extMgm::extRelPath('rtehtmlarea') . 'hooks/clearrtecache/clearrtecache.png" width="16" height="16" title="'.htmlspecialchars($title).'" alt="" />'
|
||
);
|
||
$optionValues[] = 'clearRTECache';
|
||
if ($GLOBALS['BE_USER']->isAdmin() || $GLOBALS['BE_USER']->getTSConfigVal('options.clearCache.clearRTECache')) {
|
||
// Add new cache menu item
|
||
$title = $GLOBALS['LANG']->sL('LLL:EXT:rtehtmlarea/hooks/clearrtecache/locallang.xml:title');
|
||
$cacheActions[] = array(
|
||
'id' => 'clearRTECache',
|
||
'title' => $title,
|
||
'href' => $GLOBALS['BACK_PATH'] . 'ajax.php?ajaxID=rtehtmlarea::clearTempDir',
|
||
'icon' => '<img'.t3lib_iconWorks::skinImg($GLOBALS['BACK_PATH'], 'sysext/rtehtmlarea/hooks/clearrtecache/clearrtecache.png', 'width="16" height="16"').' title="'.$title.'" alt="'.$title.'" />'
|
||
//'icon' => '<img src="' . t3lib_extMgm::extRelPath('rtehtmlarea') . 'hooks/clearrtecache/clearrtecache.png" width="16" height="16" title="'.htmlspecialchars($title).'" alt="" />'
|
||
);
|
||
$optionValues[] = 'clearRTECache';
|
||
}
|
||
}
|
||
}
|
||
- « Previous
- 1
- 2
- Next »