/**
  * Constructor function for script class.
  *
  * @return	void
  */
 function init()
 {
     global $BE_USER, $BACK_PATH, $TYPO3_CONF_VARS;
     parent::init();
     // Setting GPvars:
     $this->table = t3lib_div::_GP('table');
     $this->field = t3lib_div::_GP('field');
     $this->uid = t3lib_div::_GP('uid');
     $this->itemFormElName = t3lib_div::_GP('elname');
     $this->flex_config = t3lib_div::_GP('config');
     $seckey = t3lib_div::_GP('seckey');
     // since we are worried about someone forging parameters (XSS security hole) we will check with sent md5 hash:
     if (!($seckey === t3lib_div::shortMD5($this->table . '|' . $this->field . '|' . $this->uid . '|' . $this->itemFormElName . '|' . $this->flex_config . '|' . $GLOBALS['TYPO3_CONF_VARS']['SYS']['encryptionKey']))) {
         die('access denied');
     }
     if ($this->flex_config) {
         $this->flex_config = unserialize(base64_decode($this->flex_config));
     }
     $this->backPath = $BACK_PATH;
     // Initialize template object
     $this->doc = t3lib_div::makeInstance('template');
     $this->doc->docType = 'xhtml_trans';
     $this->doc->styleSheetFile2 = t3lib_extMgm::extRelPath('dam') . 'res/css/stylesheet.css';
     $this->doc->backPath = $this->backPath;
 }
Exemplo n.º 2
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return void
  */
 public function menuConfig()
 {
     /* @var $LANG language */
     global $LANG;
     $this->MOD_MENU = array('function' => array('1' => $LANG->getLL('module.admin.function1'), '2' => $LANG->getLL('module.admin.function2'), '3' => $LANG->getLL('module.admin.function3'), '4' => $LANG->getLL('module.admin.function4')));
     parent::menuConfig();
 }
Exemplo n.º 3
0
 /**
  * Initializes the Module
  *
  * @return	void
  */
 public function initialize()
 {
     parent::init();
     $this->doc = t3lib_div::makeInstance('template');
     $this->doc->setModuleTemplate(t3lib_extMgm::extPath('recycler') . 'mod1/mod_template.html');
     $this->doc->backPath = $GLOBALS['BACK_PATH'];
     $this->doc->setExtDirectStateProvider();
     $this->pageRenderer = $this->doc->getPageRenderer();
     $this->relativePath = t3lib_extMgm::extRelPath('recycler');
     $this->pageRecord = t3lib_BEfunc::readPageAccess($this->id, $this->perms_clause);
     $this->isAccessibleForCurrentUser = $this->id && is_array($this->pageRecord) || !$this->id && $this->isCurrentUserAdmin();
     //don't access in workspace
     if ($GLOBALS['BE_USER']->workspace !== 0) {
         $this->isAccessibleForCurrentUser = false;
     }
     //read configuration
     $modTS = $GLOBALS['BE_USER']->getTSConfig('mod.recycler');
     if ($this->isCurrentUserAdmin()) {
         $this->allowDelete = true;
     } else {
         $this->allowDelete = $modTS['properties']['allowDelete'] == '1';
     }
     if (isset($modTS['properties']['recordsPageLimit']) && intval($modTS['properties']['recordsPageLimit']) > 0) {
         $this->recordsPageLimit = intval($modTS['properties']['recordsPageLimit']);
     }
 }
Exemplo n.º 4
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return	void
  */
 public function menuConfig()
 {
     $this->MOD_MENU = array('mode' => array());
     $this->MOD_MENU['mode']['information'] = $GLOBALS['LANG']->sL('LLL:EXT:taskcenter/locallang.xml:task_overview');
     $this->MOD_MENU['mode']['tasks'] = 'Tasks';
     parent::menuConfig();
 }
Exemplo n.º 5
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return	void
  */
 function menuConfig()
 {
     global $LANG;
     $this->MOD_MENU = array('function' => array('1' => $LANG->getLL('display')));
     if ($GLOBALS['BE_USER']->user['admin']) {
         $this->MOD_MENU['function']['2'] = $LANG->getLL('rebuild');
     }
     parent::menuConfig();
 }
Exemplo n.º 6
0
				/**
				 * Adds items to the ->MOD_MENU array. Used for the function menu selector.
				 *
				 * @return	void
				 */
				function menuConfig()	{
					global $LANG;
					$this->MOD_MENU = Array (
						'function' => Array (
							'1' => $LANG->getLL('title'),
							'2' => $LANG->getLL('about'),
						)
					);
					parent::menuConfig();
				}
Exemplo n.º 7
0
 /**
  * Builds the drop down menu to select the solr instance we want to
  * administer.
  *
  * @return	void
  */
 public function menuConfig()
 {
     $registry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('t3lib_Registry');
     $sites = Tx_Solr_Site::getAvailableSites();
     // TODO add a menu entry on top to manage all indexes, otherwise when selecting a specific index actions will only affect that specific one
     foreach ($sites as $key => $site) {
         $this->MOD_MENU['function'][$site->getRootPageId()] = $site->getLabel();
     }
     parent::menuConfig();
 }
Exemplo n.º 8
0
 /**
  * Initializes the Module
  * @return	void
  */
 function init()
 {
     global $BE_USER, $LANG, $BACK_PATH, $TCA_DESCR, $TCA, $CLIENT, $TYPO3_CONF_VARS;
     parent::init();
     /*
     if (t3lib_div::_GP("clear_all_cache"))	{
     	$this->include_once[]=PATH_t3lib."class.t3lib_tcemain.php";
     }
     */
 }
Exemplo n.º 9
0
	/**
	 * Adds items to the ->MOD_MENU array. Used for the function menu selector.
	 */
	function menuConfig()	{
		global $LANG;
		$this->MOD_MENU = Array (
			"function" => Array (
				"1" => $LANG->getLL("function1"),
                                "2" => $LANG->getLL("function2"),
                                //"3" => $LANG->getLL("function3"),
			)
		);
		parent::menuConfig();
	}
Exemplo n.º 10
0
 /**
  * Initializes the Module
  *
  * @return    void
  */
 public function init()
 {
     global $BE_USER, $LANG, $BACK_PATH, $TCA_DESCR, $TCA, $CLIENT, $TYPO3_CONF_VARS;
     global $MCONF;
     parent::init();
     // Fetch module args
     $this->_moduleArgs = array();
     if (!empty($_GET[$MCONF['name']])) {
         $this->_moduleArgs = (array) $_GET[$MCONF['name']];
     }
 }
Exemplo n.º 11
0
 function init()
 {
     parent::init();
     $this->id = intval(t3lib_div::_GP('id'));
     $this->e = t3lib_div::_GP('e');
     $this->sObj = t3lib_div::_GP('sObj');
     $this->edit = t3lib_div::_GP('edit');
     $this->perms_clause = $GLOBALS['BE_USER']->getPagePermsClause(1);
     if (t3lib_div::_GP('clear_all_cache')) {
         $this->include_once[] = PATH_t3lib . 'class.t3lib_tcemain.php';
     }
 }
Exemplo n.º 12
0
	/**
	 * Adds items to the ->MOD_MENU array. Used for the function menu selector.
	 *
	 * @return	void
	 */
	function menuConfig()	{
		global $LANG;
		$this->MOD_MENU = Array (
		/*
			'function' => Array (
				'1' => $GLOBALS['LANG']->getLL('function1'),
				'2' => $GLOBALS['LANG']->getLL('function2'),
				'3' => $GLOBALS['LANG']->getLL('function3'),
			)
		*/
		);
		parent::menuConfig();
	}
Exemplo n.º 13
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return	void
  */
 function menuConfig()
 {
     global $LANG;
     if (t3lib_div::_GP('user_id')) {
         $fArray = array();
         //				'1' => $LANG->getLL('function1a'),
         //				'2' => $LANG->getLL('function2a')
         //			);
     } else {
         $fArray = array('1' => $LANG->getLL('function1'), '2' => $LANG->getLL('function2'), '3' => $LANG->getLL('function3'), '4' => $LANG->getLL('function4'), '7' => $LANG->getLL('function7'), '8' => $LANG->getLL('function8'), '9' => $LANG->getLL('function9'));
     }
     $this->MOD_MENU = array('function' => $fArray);
     parent::menuConfig();
 }
Exemplo n.º 14
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return	void
  */
 public function menuConfig()
 {
     $reportsMenuItems = array();
     $this->MOD_MENU = array('function' => array());
     foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['reports'] as $extKey => $reports) {
         foreach ($reports as $reportName => $report) {
             $reportsMenuItems[$extKey . '.' . $reportName] = $GLOBALS['LANG']->sL($report['title']);
         }
     }
     asort($reportsMenuItems);
     $reportsMenuItems = array_merge(array('index' => $GLOBALS['LANG']->getLL('reports_overview')), $reportsMenuItems);
     foreach ($reportsMenuItems as $key => $title) {
         $this->MOD_MENU['function'][$key] = $title;
     }
     parent::menuConfig();
 }
Exemplo n.º 15
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return    void
  */
 function menuConfig()
 {
     global $LANG;
     $this->MOD_MENU = array('users' => array('-1' => $LANG->getLL('loggedInUsers'), '0' => $LANG->getLL('notLoggedIn'), '' => '------------------------------'), 'mode' => array('-1' => $LANG->getLL('allTime'), '1' => $LANG->getLL('byTime')));
     foreach (t3lib_BEfunc::getRecordsByField('fe_users', 1, 1) as $user) {
         $this->MOD_MENU['users'][$user['uid']] = $user['username'];
     }
     parent::menuConfig();
     $set = t3lib_div::_GP('SET');
     if ($set['time']) {
         $dateFrom = strtotime($set['time']['from']);
         $dateTo = strtotime($set['time']['to']);
         $set['time']['from'] = $dateFrom > 0 ? date('d.m.Y', $dateFrom) : '';
         $set['time']['to'] = $dateTo > 0 ? date('d.m.Y', $dateTo) : '';
         $mergedSettings = t3lib_div::array_merge($this->MOD_SETTINGS, $set);
         $GLOBALS['BE_USER']->pushModuleData($this->MCONF['name'], $mergedSettings);
         $this->MOD_SETTINGS = $mergedSettings;
     }
 }
Exemplo n.º 16
0
 /**
  * Builds the drop down menu to select the solr instance we want to
  * administer.
  *
  * @return	void
  */
 public function menuConfig()
 {
     // find website roots
     $rootPages = $GLOBALS['TYPO3_DB']->exec_SELECTgetRows('uid, title', 'pages', 'is_siteroot = 1 AND deleted = 0');
     $pageSelect = t3lib_div::makeInstance('t3lib_pageSelect');
     // find solr configurations and add them as function menu entries
     foreach ($rootPages as $rootPage) {
         $rootLine = $pageSelect->getRootLine($rootPage['uid']);
         $tmpl = t3lib_div::makeInstance('t3lib_tsparser_ext');
         $tmpl->tt_track = false;
         // Do not log time-performance information
         $tmpl->init();
         $tmpl->runThroughTemplates($rootLine);
         // This generates the constants/config + hierarchy info for the template.
         $tmpl->generateConfig();
         list($solrSetup) = $tmpl->ext_getSetup($tmpl->setup, 'plugin.tx_solr.solr');
         if (!empty($solrSetup)) {
             $this->MOD_MENU['function'][$rootPage['uid']] = $rootPage['title'] . ' ' . '(' . $solrSetup['host'] . ':' . $solrSetup['port'] . $solrSetup['path'] . ' [pid: ' . $rootPage['uid'] . '])';
         }
     }
     parent::menuConfig();
 }
Exemplo n.º 17
0
 /**
  * Initialisation of this backend module
  *
  * @return	void
  * @access public
  */
 function init()
 {
     parent::init();
     $this->modTSconfig = t3lib_BEfunc::getModTSconfig($this->id, 'mod.' . $this->MCONF['name']);
     $this->modSharedTSconfig = t3lib_BEfunc::getModTSconfig($this->id, 'mod.SHARED');
     $this->MOD_SETTINGS = t3lib_BEfunc::getModuleData($this->MOD_MENU, t3lib_div::_GP('SET'), $this->MCONF['name']);
     $tmpTSc = t3lib_BEfunc::getModTSconfig($this->id, 'mod.web_list');
     $tmpTSc = $tmpTSc['properties']['newContentWiz.']['overrideWithExtension'];
     if ($tmpTSc != 'templavoila' && t3lib_extMgm::isLoaded($tmpTSc)) {
         $this->newContentWizScriptPath = $GLOBALS['BACK_PATH'] . t3lib_extMgm::extRelPath($tmpTSc) . 'mod1/db_new_content_el.php';
     }
     $this->extConf = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['templavoila']);
     $this->altRoot = t3lib_div::_GP('altRoot');
     $this->versionId = t3lib_div::_GP('versionId');
     if (isset($this->modTSconfig['properties']['previewTitleMaxLen'])) {
         $this->previewTitleMaxLen = intval($this->modTSconfig['properties']['previewTitleMaxLen']);
     }
     // enable debug for development
     if ($this->modTSconfig['properties']['debug']) {
         $this->debug = TRUE;
     }
     $this->blindIcons = isset($this->modTSconfig['properties']['blindIcons']) ? t3lib_div::trimExplode(',', $this->modTSconfig['properties']['blindIcons'], TRUE) : array();
     $this->addToRecentElements();
     // Fill array allAvailableLanguages and currently selected language (from language selector or from outside)
     $this->allAvailableLanguages = $this->getAvailableLanguages(0, true, true, true);
     $this->currentLanguageKey = $this->allAvailableLanguages[$this->MOD_SETTINGS['language']]['ISOcode'];
     $this->currentLanguageUid = $this->allAvailableLanguages[$this->MOD_SETTINGS['language']]['uid'];
     // If no translations exist for this page, set the current language to default (as there won't be a language selector)
     $this->translatedLanguagesArr = $this->getAvailableLanguages($this->id);
     if (count($this->translatedLanguagesArr) == 1) {
         // Only default language exists
         $this->currentLanguageKey = 'DEF';
     }
     // Set translator mode if the default langauge is not accessible for the user:
     if (!$GLOBALS['BE_USER']->checkLanguageAccess(0) && !$GLOBALS['BE_USER']->isAdmin()) {
         $this->translatorMode = TRUE;
     }
     // Initialize side bar and wizards:
     $this->sideBarObj =& t3lib_div::getUserObj('&tx_templavoila_mod1_sidebar', '');
     $this->sideBarObj->init($this);
     $this->sideBarObj->position = isset($this->modTSconfig['properties']['sideBarPosition']) ? $this->modTSconfig['properties']['sideBarPosition'] : 'toptabs';
     $this->wizardsObj = t3lib_div::getUserObj('&tx_templavoila_mod1_wizards', '');
     $this->wizardsObj->init($this);
     // Initialize TemplaVoila API class:
     $this->apiObj = t3lib_div::makeInstance('tx_templavoila_api', $this->altRoot ? $this->altRoot : 'pages');
     if (isset($this->modSharedTSconfig['properties']['useLiveWorkspaceForReferenceListUpdates'])) {
         $this->apiObj->modifyReferencesInLiveWS(true);
     }
     // Initialize the clipboard
     $this->clipboardObj =& t3lib_div::getUserObj('&tx_templavoila_mod1_clipboard', '');
     $this->clipboardObj->init($this);
     // Initialize the record module
     $this->recordsObj =& t3lib_div::getUserObj('&tx_templavoila_mod1_records', '');
     $this->recordsObj->init($this);
     // Add the localization module if localization is enabled:
     if ($this->alternativeLanguagesDefined()) {
         $this->localizationObj =& t3lib_div::getUserObj('&tx_templavoila_mod1_localization', '');
         $this->localizationObj->init($this);
     }
 }
Exemplo n.º 18
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return	void
  */
 function menuConfig()
 {
     $this->MOD_MENU = array('displayMode' => array('explode' => 'Mode: Exploded Visual', 'source' => 'Mode: HTML Source '), 'showDSxml' => '');
     parent::menuConfig();
 }
 /**
  * If $this->function_key is set (which means there are two levels of object connectivity) then $this->extClassConf is loaded with the TBE_MODULES_EXT configuration for that sub-sub-module
  *
  * @return	void
  * @see $function_key, tx_funcwizards_webfunc::init()
  */
 function handleExternalFunctionValue()
 {
     // Must clean first to make sure the correct key is set...
     $this->pObj->MOD_SETTINGS = t3lib_BEfunc::getModuleData($this->pObj->MOD_MENU, t3lib_div::_GP('SET'), $this->pObj->MCONF['name']);
     if ($this->function_key) {
         $this->extClassConf = $this->pObj->getExternalItemConfig($this->pObj->MCONF['name'], $this->function_key, $this->pObj->MOD_SETTINGS[$this->function_key]);
         if (is_array($this->extClassConf) && $this->extClassConf['path']) {
             $this->pObj->include_once[] = $this->extClassConf['path'];
         }
     }
 }
Exemplo n.º 20
0
 /**
  * Initializes the module. See <code>t3lib_SCbase::init()</code> for more information.
  *
  * @return	void
  */
 function init()
 {
     // Setting module configuration:
     $this->MCONF = $GLOBALS['MCONF'];
     // Initialize Document Template object:
     $this->doc = t3lib_div::makeInstance('template');
     $this->doc->backPath = $GLOBALS['BACK_PATH'];
     $this->doc->setModuleTemplate('templates/ws_forms.html');
     $this->doc->form = '<form action="' . t3lib_div::getIndpEnv('SCRIPT_NAME') . '" method="post" enctype="' . $GLOBALS['TYPO3_CONF_VARS']['SYS']['form_enctype'] . '" name="editform" onsubmit="return TBE_EDITOR.checkSubmit(1);">';
     $this->doc->getContextMenuCode();
     // Parent initialization:
     t3lib_SCbase::init();
 }
Exemplo n.º 21
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return	void
  */
 function menuConfig()
 {
     global $LANG;
     $this->loadExtConf();
     $this->MOD_MENU = array('action' => array('' => $LANG->getLL('general.action.blank.title'), 'link' => $LANG->getLL('general.action.edit.link.title'), 'inlineEdit' => $LANG->getLL('general.action.edit.inline.title'), 'export_excel' => $LANG->getLL('general.action.export.excel.title'), 'export_xml' => $LANG->getLL('general.action.export.xml.title')), 'lang' => array(), 'onlyChangedContent' => '', 'noHidden' => '');
     // Load system languages into menu:
     /** @var $t8Tools t3lib_transl8tools */
     $t8Tools = t3lib_div::makeInstance('t3lib_transl8tools');
     $sysL = $t8Tools->getSystemLanguages();
     foreach ($sysL as $sL) {
         if ($sL['uid'] > 0 && $GLOBALS['BE_USER']->checkLanguageAccess($sL['uid'])) {
             if ($this->lConf['enable_hidden_languages'] == 1) {
                 $this->MOD_MENU['lang'][$sL['uid']] = $sL['title'];
             } elseif ($sL['hidden'] == 0) {
                 $this->MOD_MENU['lang'][$sL['uid']] = $sL['title'];
             }
         }
     }
     parent::menuConfig();
 }
Exemplo n.º 22
0
 /**
  * Initializes the Module
  * @return	void
  */
 function init()
 {
     global $BE_USER, $LANG, $BACK_PATH, $TCA_DESCR, $TCA, $CLIENT, $TYPO3_CONF_VARS;
     parent::init();
 }
 /**
  * Initializes the backend module by setting internal variables, initializing the menu.
  *
  * @access public
  *
  * @return	void
  */
 public function __construct()
 {
     $GLOBALS['BE_USER']->modAccess($GLOBALS['MCONF'], 1);
     $GLOBALS['LANG']->includeLLFile('EXT:' . $this->extKey . '/modules/' . $this->modPath . 'locallang.xml');
     $this->setMOD_MENU();
     parent::init();
     $this->conf = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][$this->extKey]);
     $this->pageInfo = t3lib_BEfunc::readPageAccess($this->id, $this->perms_clause);
     $this->doc = t3lib_div::makeInstance('template');
     $this->doc->setModuleTemplate('EXT:' . $this->extKey . '/modules/' . $this->modPath . 'template.tmpl');
     $this->doc->getPageRenderer()->addCssFile(t3lib_extMgm::extRelPath($this->extKey) . 'res/backend.css');
     $this->doc->backPath = $GLOBALS['BACK_PATH'];
     $this->doc->bodyTagAdditions = 'class="ext-' . $this->extKey . '-modules"';
     $this->doc->form = '<form action="" method="post" enctype="multipart/form-data">';
     $this->data = t3lib_div::_GPmerged($this->prefixId);
 }
Exemplo n.º 24
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return	void
  */
 function menuConfig()
 {
     global $LANG;
     $this->MOD_MENU = array('function' => array('1' => $LANG->getLL('info')));
     parent::menuConfig();
 }
Exemplo n.º 25
0
	/**
	 * Adds items to the ->MOD_MENU array. Used for the function menu selector.
	 *
	 * @return	void
	 */
	function menuConfig()    {
		$this->MOD_MENU = Array (
			'displayMode' => array	(
				'explode' => 'Mode: Exploded Visual',
#				'_' => 'Mode: Overlay',
				'source' => 'Mode: HTML Source ',
#				'borders' => 'Mode: Table Borders',
			),
			'showDSxml' => ''
		);
		parent::menuConfig();
	}
Exemplo n.º 26
0
    /**
     * Initializes the module. See <code>t3lib_SCbase::init()</code> for more information.
     *
     * @return	void
     */
    function init()
    {
        // Setting module configuration:
        $this->MCONF = $GLOBALS['MCONF'];
        $this->isSwap = t3lib_div::_GP('swap');
        $this->nextRecordNumber = t3lib_div::_GP('continue_publish');
        // Initialize Document Template object:
        $this->doc = t3lib_div::makeInstance('mediumDoc');
        $this->doc->backPath = $GLOBALS['BACK_PATH'];
        $this->doc->JScode = '<script type="text/javascript">/*<![CDATA[*/
			function closeAndReload() {
				//window.opener.location.reload(); window.close();
				window.location.href = \'index.php\';
			}

			function nextPortion(val) {
				setTimeout(\'window.location.href = "publish.php?continue_publish=\' + val + \'&swap=' . ($this->isSwap ? 1 : 0) . '"\', 750);
			}
		/*]]>*/</script>
		';
        $this->doc->inDocStyles = '
		#progress-block { width: 450px; margin: 50px auto; text-align: center; }
		H3 { margin-bottom: 20px; }
		P, IMG { margin-bottom: 20px; }
		#progress-block A { text-decoration: underline; }
';
        // Parent initialization:
        t3lib_SCbase::init();
    }
Exemplo n.º 27
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return    void
  */
 public function menuConfig()
 {
     $this->MOD_MENU = array('function' => array('1' => $GLOBALS['LANG']->getLL('function1')));
     parent::menuConfig();
 }
Exemplo n.º 28
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return	void
  */
 function menuConfig()
 {
     global $LANG;
     $this->MOD_MENU = array_merge($this->MOD_MENU, array('tx_dam_select' => '', 'tx_dam_select_undo' => '', 'tx_dam_folder' => '', 'tx_dam_select_storedSettings' => '', 'tx_damindex_indexSetup' => '', 'tx_damindex_storedSettings' => '', 'tx_dam_resultPointer' => '', 'tx_dam_file_uploadFields' => array(5 => '5', 10 => '10', 15 => '15'), 'tx_dam_file_upload_overwrite' => '', 'tx_dam_resultsPerPage' => array(20 => '20', 50 => '50', 100 => '100', 200 => '200'), 'tx_dam_list_langSelector' => '', 'tx_dam_list_langOverlay' => array('exclusive' => $LANG->sL('LLL:EXT:dam/lib/locallang.xml:langCurrentExclusive'), 'andUntranslated' => $LANG->sL('LLL:EXT:dam/lib/locallang.xml:langCurrentAndDefault'))));
     parent::menuConfig();
 }
Exemplo n.º 29
0
	function init() {
		parent::init();

		$this->extConf = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['templavoila']);
	}
Exemplo n.º 30
0
 /**
  * Adds items to the ->MOD_MENU array. Used for the function menu selector.
  *
  * @return  void
  */
 function menuConfig()
 {
     global $LANG;
     parent::menuConfig();
 }