コード例 #1
0
 /**
  * Main function, rendering the upload file form fields
  *
  * @return	void
  */
 function main()
 {
     // Make page header:
     $this->content = $this->doc->startPage($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_upload.php.pagetitle'));
     $form = $this->renderUploadForm();
     $pageContent = $this->doc->header($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:file_upload.php.pagetitle')) . $this->doc->section('', $form);
     // Header Buttons
     $docHeaderButtons = array('csh' => t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'file_upload', $GLOBALS['BACK_PATH']));
     $markerArray = array('CSH' => $docHeaderButtons['csh'], 'FUNC_MENU' => t3lib_BEfunc::getFuncMenu($this->id, 'SET[function]', $this->MOD_SETTINGS['function'], $this->MOD_MENU['function']), 'CONTENT' => $pageContent, 'PATH' => $this->title);
     $this->content .= $this->doc->moduleBody(array(), $docHeaderButtons, $markerArray);
     $this->content .= $this->doc->endPage();
     $this->content = $this->doc->insertStylesAndJS($this->content);
 }
コード例 #2
0
    /**
     * Main function, rendering the main module content
     *
     * @return	void
     */
    function main()
    {
        global $LANG;
        // start content compilation
        $this->content .= $this->doc->startPage($LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.pagetitle'));
        // Make page header:
        $pageContent = '';
        $pageContent .= $this->doc->header($LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.pagetitle'));
        $pageContent .= $this->doc->spacer(5);
        $pageContent .= $this->doc->divider(5);
        $code = '<form action="tce_file.php" method="post" name="editform">';
        // Making the selector box for the number of concurrent folder-creations
        $this->number = t3lib_div::intInRange($this->number, 1, 10);
        $code .= '
			<div id="c-select">
				<label for="number-of-new-folders">' . $LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.number_of_folders') . '</label>
				<select name="number" id="number-of-new-folders" onchange="reload(this.options[this.selectedIndex].value);">';
        for ($a = 1; $a <= $this->folderNumber; $a++) {
            $code .= '<option value="' . $a . '"' . ($this->number == $a ? ' selected="selected"' : '') . '>' . $a . '</option>';
        }
        $code .= '
				</select>
			</div>
			';
        // Making the number of new-folder boxes needed:
        $code .= '
			<div id="c-createFolders">
		';
        for ($a = 0; $a < $this->number; $a++) {
            $code .= '
					<input' . $this->doc->formWidth(20) . ' type="text" name="file[newfolder][' . $a . '][data]" onchange="changed=true;" />
					<input type="hidden" name="file[newfolder][' . $a . '][target]" value="' . htmlspecialchars($this->target) . '" /><br />
				';
        }
        $code .= '
			</div>
		';
        // Making submit button for folder creation:
        $code .= '
			<div id="c-submitFolders">
				<input type="submit" value="' . $LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.submit', 1) . '" />
				<input type="submit" value="' . $LANG->sL('LLL:EXT:lang/locallang_core.php:labels.cancel', 1) . '" onclick="backToList(); return false;" />
				<input type="hidden" name="redirect" value="' . htmlspecialchars($this->returnUrl) . '" />
			</div>
			';
        // CSH:
        $code .= t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'file_newfolder', $GLOBALS['BACK_PATH'], '<br />');
        $pageContent .= $code;
        // Add spacer:
        $pageContent .= $this->doc->spacer(10);
        // Switching form tags:
        $pageContent .= $this->doc->sectionEnd();
        $pageContent .= '</form><form action="tce_file.php" method="post" name="editform2">';
        // Create a list of allowed file extensions with the nice format "*.jpg, *.gif" etc.
        $fileExtList = array();
        $textfileExt = t3lib_div::trimExplode(',', $GLOBALS['TYPO3_CONF_VARS']['SYS']['textfile_ext'], TRUE);
        foreach ($textfileExt as $fileExt) {
            if (!preg_match('/' . $GLOBALS['TYPO3_CONF_VARS']['BE']['fileDenyPattern'] . '/i', '.' . $fileExt)) {
                $fileExtList[] = '*.' . $fileExt;
            }
        }
        // Add form fields for creation of a new, blank text file:
        $code = '
			<div id="c-newFile">
				<p>[' . htmlspecialchars(implode(', ', $fileExtList)) . ']</p>
				<input' . $this->doc->formWidth(20) . ' type="text" name="file[newfile][0][data]" onchange="changed=true;" />
				<input type="hidden" name="file[newfile][0][target]" value="' . htmlspecialchars($this->target) . '" />
			</div>
			';
        // Submit button for creation of a new file:
        $code .= '
			<div id="c-submitFiles">
				<input type="submit" value="' . $LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.newfile_submit', 1) . '" />
				<input type="submit" value="' . $LANG->sL('LLL:EXT:lang/locallang_core.php:labels.cancel', 1) . '" onclick="backToList(); return false;" />
				<input type="hidden" name="redirect" value="' . htmlspecialchars($this->returnUrl) . '" />
			</div>
			';
        // CSH:
        $code .= t3lib_BEfunc::cshItem('xMOD_csh_corebe', 'file_newfile', $GLOBALS['BACK_PATH'], '<br />');
        $pageContent .= $this->doc->section($LANG->sL('LLL:EXT:lang/locallang_core.php:file_newfolder.php.newfile'), $code);
        $pageContent .= $this->doc->sectionEnd();
        $pageContent .= '</form>';
        $docHeaderButtons = array();
        // Add the HTML as a section:
        $markerArray = array('CSH' => $docHeaderButtons['csh'], 'FUNC_MENU' => t3lib_BEfunc::getFuncMenu($this->id, 'SET[function]', $this->MOD_SETTINGS['function'], $this->MOD_MENU['function']), 'CONTENT' => $pageContent, 'PATH' => $this->title);
        $this->content .= $this->doc->moduleBody(array(), $docHeaderButtons, $markerArray);
        $this->content .= $this->doc->endPage();
        $this->content = $this->doc->insertStylesAndJS($this->content);
    }
コード例 #3
0
    /**
     * Main Method, rendering either colorpicker or frameset depending on ->showPicker
     *
     * @return	void
     */
    function main()
    {
        global $LANG;
        if (!t3lib_div::_GP('showPicker')) {
            // Show frameset by default:
            $this->frameSet();
        } else {
            // Putting together the items into a form:
            $content = '
				<form name="colorform" method="post" action="wizard_colorpicker.php">
					' . $this->colorMatrix() . '
					' . $this->colorList() . '
					' . $this->colorImage() . '

						<!-- Value box: -->
					<p class="c-head">' . $LANG->getLL('colorpicker_colorValue', 1) . '</p>
					<table border="0" cellpadding="0" cellspacing="3">
						<tr>
							<td><input type="text" ' . $this->doc->formWidth(7) . ' maxlength="10" name="colorValue" value="' . htmlspecialchars($this->colorValue) . '" /></td>
							<td style="background-color:' . htmlspecialchars($this->colorValue) . '; border: 1px solid black;">&nbsp;<span style="color: black;">' . $LANG->getLL('colorpicker_black', 1) . '</span>&nbsp;<span style="color: white;">' . $LANG->getLL('colorpicker_white', 1) . '</span>&nbsp;</td>
							<td><input type="submit" name="save_close" value="' . $LANG->getLL('colorpicker_setClose', 1) . '" /></td>
						</tr>
					</table>

						<!-- Hidden fields with values that has to be kept constant -->
					<input type="hidden" name="showPicker" value="1" />
					<input type="hidden" name="fieldChangeFunc" value="' . htmlspecialchars($this->fieldChangeFunc) . '" />
					<input type="hidden" name="fieldChangeFuncHash" value="' . htmlspecialchars($this->fieldChangeFuncHash) . '" />
					<input type="hidden" name="fieldName" value="' . htmlspecialchars($this->fieldName) . '" />
					<input type="hidden" name="formName" value="' . htmlspecialchars($this->formName) . '" />
					<input type="hidden" name="md5ID" value="' . htmlspecialchars($this->md5ID) . '" />
					<input type="hidden" name="exampleImg" value="' . htmlspecialchars($this->exampleImg) . '" />
				</form>';
            // If the save/close button is clicked, then close:
            if (t3lib_div::_GP('save_close')) {
                $content .= $this->doc->wrapScriptTags('
					setValue(\'' . $this->colorValue . '\');
					parent.close();
				');
            }
            // Output:
            $this->content .= $this->doc->section($LANG->getLL('colorpicker_title'), $content, 0, 1);
        }
    }