Bug #18512 » 7957_enable_xclassing_for_backendclasses.diff
typo3/classes/class.backendsearchmenu.php (working copy) | ||
---|---|---|
*
|
||
* @var TYPO3backend
|
||
*/
|
||
private $backendReference;
|
||
protected $backendReference;
|
||
/**
|
||
* constructor
|
||
... | ... | |
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/classes/class.backendsearchmenu.php']);
|
||
}
|
||
?>
|
||
?>
|
typo3/classes/class.clearcachemenu.php (working copy) | ||
---|---|---|
*/
|
||
class ClearCacheMenu implements backend_toolbarItem {
|
||
private $cacheActions;
|
||
public $cacheActions;
|
||
/**
|
||
* reference back to the backend object
|
||
*
|
||
* @var TYPO3backend
|
||
*/
|
||
private $backendReference;
|
||
protected $backendReference;
|
||
/**
|
||
* constructor
|
typo3/classes/class.shortcutmenu.php (working copy) | ||
---|---|---|
*/
|
||
class ShortcutMenu implements backend_toolbarItem {
|
||
private $shortcutGroups;
|
||
public $shortcutGroups;
|
||
/**
|
||
* all available shortcuts
|
||
*
|
||
* @var array
|
||
*/
|
||
private $shortcuts;
|
||
public $shortcuts;
|
||
/**
|
||
* labels of all groups.
|
||
... | ... | |
*
|
||
* @var TYPO3backend
|
||
*/
|
||
private $backendReference;
|
||
protected $backendReference;
|
||
/**
|
||
* constructor
|
||
... | ... | |
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/classes/class.shortcutmenu.php']);
|
||
}
|
||
?>
|
||
?>
|
typo3/classes/class.workspaceselector.php (working copy) | ||
---|---|---|
*
|
||
* @var TYPO3backend
|
||
*/
|
||
private $backendReference;
|
||
protected $backendReference;
|
||
/**
|
||
* constructor
|
||
... | ... | |
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/classes/class.workspaceselector.php']);
|
||
}
|
||
?>
|
||
?>
|