⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 class.tx_rtehtmlarea_pi2.php

📁 Typo3, 开源里边最强大的
💻 PHP
字号:
<?php/****************************************************************  Copyright notice**  (c) 2005-2006 Stanislas Rolland <stanislas.rolland(arobas)fructifor.ca>*  All rights reserved**  This script is part of the TYPO3 project. The TYPO3 project is*  free software; you can redistribute it and/or modify*  it under the terms of the GNU General Public License as published by*  the Free Software Foundation; either version 2 of the License, or*  (at your option) any later version.**  The GNU General Public License can be found at*  http://www.gnu.org/copyleft/gpl.html.*  A copy is found in the textfile GPL.txt and important notices to the license*  from the author is found in LICENSE.txt distributed with these scripts.***  This script is distributed in the hope that it will be useful,*  but WITHOUT ANY WARRANTY; without even the implied warranty of*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the*  GNU General Public License for more details.**  This copyright notice MUST APPEAR in all copies of the script!***************************************************************//** * Front end RTE based on htmlArea * * @author Stanislas Rolland <stanislas.rolland(arobas)fructifor.ca> * * $Id: class.tx_rtehtmlarea_pi2.php 1676 2006-08-15 04:51:33Z stanrolland $  * */require_once(t3lib_extMgm::extPath('rtehtmlarea').'class.tx_rtehtmlarea_base.php');require_once(PATH_t3lib.'class.t3lib_parsehtml_proc.php');require_once(PATH_t3lib.'class.t3lib_befunc.php');class tx_rtehtmlarea_pi2 extends tx_rtehtmlarea_base {		// External:	var $RTEWrapStyle = '';				// Alternative style for RTE wrapper <div> tag.	var $RTEdivStyle = '';				// Alternative style for RTE <div> tag.	var $extHttpPath;				// full Path to this extension for http (so no Server path). It ends with "/"		// For the editor	var $elementId;	var $elementParts;	var $tscPID;	var $typeVal;	var $thePid;	var $RTEsetup;	var $thisConfig;	var $confValues;	var $language;	var $spellCheckerLanguage;	var $spellCheckerCharset;	var $spellCheckerMode;	var $specConf;	var $LOCAL_LANG;	/**	 * Draws the RTE as an iframe	 *	 * @param	object		Reference to parent object, which is an instance of the TCEforms.	 * @param	string		The table name	 * @param	string		The field name	 * @param	array		The current row from which field is being rendered	 * @param	array		Array of standard content for rendering form fields from TCEforms. See TCEforms for details on this. Includes for instance the value and the form field name, java script actions and more.	 * @param	array		"special" configuration - what is found at position 4 in the types configuration of a field from record, parsed into an array.	 * @param	array		Configuration for RTEs; A mix between TSconfig and otherwise. Contains configuration for display, which buttons are enabled, additional transformation information etc.	 * @param	string		Record "type" field value.	 * @param	string		Relative path for images/links in RTE; this is used when the RTE edits content from static files where the path of such media has to be transformed forth and back!	 * @param	integer		PID value of record (true parent page id)	 * @return	string		HTML code for RTE!	 */	function drawRTE(&$pObj,$table,$field,$row,$PA,$specConf,$thisConfig,$RTEtypeVal,$RTErelPath,$thePidValue) {		global $TSFE, $TYPO3_CONF_VARS, $TYPO3_DB;					//call $this->transformContent			//call $this->triggerField                $this->TCEform = $pObj;		$this->client = $this->clientInfo();		$this->typoVersion = t3lib_div::int_from_ver(TYPO3_version);		/* =======================================		 * INIT THE EDITOR-SETTINGS		 * =======================================		 */			// first get the http-path to typo3:		$this->httpTypo3Path = substr( substr( t3lib_div::getIndpEnv('TYPO3_SITE_URL'), strlen( t3lib_div::getIndpEnv('TYPO3_REQUEST_HOST') ) ), 0, -1 );		if (strlen($this->httpTypo3Path) == 1) {			$this->httpTypo3Path = '/';		} else {			$this->httpTypo3Path .= '/';		}			// Get the path to this extension:		$this->extHttpPath = $this->httpTypo3Path.t3lib_extMgm::siteRelPath($this->ID);			// Get the site URL		$this->siteURL = t3lib_div::getIndpEnv('TYPO3_SITE_URL');			// Get the host URL		$this->hostURL = t3lib_div::getIndpEnv('TYPO3_REQUEST_HOST');			// Element ID + pid		$this->elementId = $PA['itemFormElName'];		$this->elementParts[0] = $table;		$this->elementParts[1] = $row['uid'];		$this->tscPID = $thePidValue;		$this->thePid = $thePidValue;			// Record "type" field value:		$this->typeVal = $RTEtypeVal; // TCA "type" value for record		unset($this->RTEsetup);		$pageTSConfig = $TSFE->getPagesTSconfig();		$this->RTEsetup = $pageTSConfig['RTE.'];		$this->thisConfig = $this->RTEsetup['default.'];		$this->thisConfig = $this->thisConfig['FE.'];			// Special configuration (line) and default extras:		$this->specConf = $specConf;				if ($this->thisConfig['forceHTTPS']) {			$this->httpTypo3Path = preg_replace('/^(http|https)/', 'https', $this->httpTypo3Path);			$this->extHttpPath = preg_replace('/^(http|https)/', 'https', $this->extHttpPath);			$this->siteURL = preg_replace('/^(http|https)/', 'https', $this->siteURL);			$this->hostURL = preg_replace('/^(http|https)/', 'https', $this->hostURL);		}					// Language		$TSFE->initLLvars();		$this->language = $TSFE->lang;		$this->LOCAL_LANG = t3lib_div::readLLfile('EXT:' . $this->ID . '/locallang.xml', $this->language);		if ($this->language=='default' || !$this->language)	{			$this->language='en';		}			// Character set		$this->charset = $TSFE->labelsCharset;		$this->OutputCharset  = $TSFE->metaCharset ? $TSFE->metaCharset : $TSFE->renderCharset;		/* =======================================		 * TOOLBAR CONFIGURATION		 * =======================================		 */			// htmlArea plugins list		$this->pluginEnableArray = array_intersect(t3lib_div::trimExplode(',', $this->pluginList , 1), t3lib_div::trimExplode(',', $TYPO3_CONF_VARS['EXTCONF'][$this->ID]['HTMLAreaPluginList'], 1));		$hidePlugins = array('TYPO3Browsers', 'UserElements', 'Acronym', 'TYPO3HtmlParser');		if ($this->client['BROWSER'] == 'opera') {			$hidePlugins[] = 'ContextMenu';			$this->thisConfig['hideTableOperationsInToolbar'] = 0;			$this->thisConfig['disableEnterParagraphs'] = 1;		}		if(!t3lib_extMgm::isLoaded('static_info_tables') || in_array($this->language, t3lib_div::trimExplode(',', $TYPO3_CONF_VARS['EXTCONF'][$this->ID]['noSpellCheckLanguages']))) $hidePlugins[] = 'SpellChecker';		$this->pluginEnableArray = array_diff($this->pluginEnableArray, $hidePlugins);		$this->pluginEnableArrayMultiple = $this->pluginEnableArray;			// Toolbar		$this->setToolBar();			// Check if some plugins need to be disabled		$this->setPlugins();		/* =======================================		 * PLUGIN-SPECIFIC CONFIGURATION		 * =======================================		 */		if( $this->isPluginEnable('SpellChecker') ) {				// Set the language of the content for the SpellChecker			$this->spellCheckerLanguage = $TYPO3_CONF_VARS['EXTCONF']['rtehtmlarea']['defaultDictionary'];			if($row['sys_language_uid']) {				$tableA = 'sys_language';				$tableB = 'static_languages';				$languagesUidsList = $row['sys_language_uid'];				$selectFields = $tableA . '.uid,' . $tableB . '.lg_iso_2,' . $tableB . '.lg_country_iso_2,' . $tableB . '.lg_typo3';				$table = $tableA . ' LEFT JOIN ' . $tableB . ' ON ' . $tableA . '.static_lang_isocode=' . $tableB . '.uid';				$whereClause = $tableA . '.uid IN (' . $languagesUidsList . ') ';				$whereClause .= $TSFE->cObj->enableFields($tableA);				$res = $TYPO3_DB->exec_SELECTquery($selectFields, $table, $whereClause);				while ( $languageRow = $TYPO3_DB->sql_fetch_assoc($res) ) {					$this->spellCheckerLanguage = strtolower(trim($languageRow['lg_iso_2']).(trim($languageRow['lg_country_iso_2'])?'_'.trim($languageRow['lg_country_iso_2']):''));					$this->spellCheckerTypo3Language = strtolower(trim($languageRow['lg_typo3']));				}			}			$this->spellCheckerLanguage = $this->spellCheckerLanguage?$this->spellCheckerLanguage:$this->language;			$this->spellCheckerTypo3Language = $this->spellCheckerTypo3Language?$this->spellCheckerTypo3Language:$TSFE->lang;			if ($this->spellCheckerTypo3Language=='default') {				$this->spellCheckerTypo3Language='en';			}				// Set the charset of the content for the SpellChecker			$this->spellCheckerCharset = $TSFE->csConvObj->charSetArray[$this->spellCheckerTypo3Language];			$this->spellCheckerCharset = $this->spellCheckerCharset ? $this->spellCheckerCharset : 'iso-8859-1';			$this->spellCheckerCharset = trim($TSFE->config['config']['metaCharset']) ? trim($TSFE->config['config']['metaCharset']) : $this->spellCheckerCharset;				// Set the SpellChecker mode			$this->spellCheckerMode = isset($this->thisConfig['HTMLAreaPspellMode']) ? trim($this->thisConfig['HTMLAreaPspellMode']) : 'normal';			if( !in_array($this->spellCheckerMode, $this->spellCheckerModes)) {				$this->spellCheckerMode = 'normal';			}		}		if( $this->isPluginEnable('QuickTag') && trim($this->thisConfig['hideTags'])) {			$this->quickTagHideTags = implode(',', t3lib_div::trimExplode(',', $this->thisConfig['hideTags'], 1));		}		/* =======================================		 * SET STYLES		 * =======================================		 */		$RTEWidth = 460+($pObj->docLarge ? 150 : 0);		$RTEHeight = 380;		$editorWrapWidth = $RTEWidth . 'px';		$editorWrapHeight = $RTEHeight . 'px';		$this->RTEWrapStyle = $this->RTEWrapStyle ? $this->RTEWrapStyle : ($this->RTEdivStyle ? $this->RTEdivStyle : ('height:' . ($RTEHeight+2) . 'px; width:'. ($RTEWidth+2) . 'px;'));				$this->RTEdivStyle = $this->RTEdivStyle ? $this->RTEdivStyle : 'position:relative; left:0px; top:0px; height:' . $RTEHeight . 'px; width:'.$RTEWidth.'px; border: 1px solid black;';		$this->toolbar_level_size = $RTEWidth;		/* =======================================		 * LOAD JS, CSS and more		 * =======================================		 */			// Preloading the pageStyle		$filename = trim($this->thisConfig['contentCSS']) ? trim($this->thisConfig['contentCSS']) : 'EXT:' . $this->ID . '/htmlarea/plugins/DynamicCSS/dynamiccss.css';		$additionalCode_loadCSS = '		<link rel="alternate stylesheet" type="text/css" href="' . $this->getFullFileName($filename) . '" />';			// Loading the editor skin		$skinFilename = trim($this->thisConfig['skin']) ? trim($this->thisConfig['skin']) : 'EXT:' . $this->ID . '/htmlarea/skins/default/htmlarea.css';		if($this->client['BROWSER'] == 'gecko' && $this->client['VERSION'] == '1.3' && substr($skinFilename,0,4) == 'EXT:')  {			$skinFilename = 'EXT:' . $this->ID . '/htmlarea/skins/default/htmlarea.css';		}		if (substr($skinFilename,0,4) == 'EXT:')      {       // extension			list($extKey,$local) = explode('/',substr($skinFilename,4),2);			$skinFilename='';			if (strcmp($extKey,'') &&  t3lib_extMgm::isLoaded($extKey) && strcmp($local,'')) {				$skinFilename = $this->httpTypo3Path . t3lib_extMgm::siteRelPath($extKey).$local;				$skinDir = $this->siteURL . t3lib_extMgm::siteRelPath($extKey) . dirname($local);			}		} elseif (substr($skinFilename,0,1) != '/') {			$skinDir = $this->siteURL.dirname($skinFilename);			$skinFilename = $this->siteURL.$skinFilename;		} else {			$skinDir = substr($this->siteURL,0,-1) . dirname($skinFilename);		}		$this->editorCSS = $skinFilename;		$this->editedContentCSS = $skinDir . '/htmlarea-edited-content.css';		$additionalCode_loadCSS .= '		<link rel="alternate stylesheet" type="text/css" href="' . $this->editedContentCSS . '" />';		$additionalCode_loadCSS .= '		<link rel="stylesheet" type="text/css" href="' . $this->editorCSS . '" />';			// Loading CSS, JavaScript files and code		$TSFE->additionalHeaderData['htmlArea'] = $additionalCode_loadCSS;		$pObj->additionalJS_initial = $this->loadJSfiles($pObj->RTEcounter);		$pObj->additionalJS_pre[] = $this->loadJScode($pObj->RTEcounter);		/* =======================================		 * DRAW THE EDITOR		 * =======================================		 */			// Transform value:		$value = $this->transformContent('rte',$PA['itemFormElValue'],$table,$field,$row,$specConf,$thisConfig,$RTErelPath,$thePidValue);		if ($this->client['BROWSER'] == 'gecko') {				// change <strong> to <b>			$value = preg_replace('/<(\/?)strong/i', "<$1b", $value);				// change <em> to <i>			$value = preg_replace('/<(\/?)em([^b>]*>)/i', "<$1i$2", $value);		}					// Register RTE windows:		$pObj->RTEwindows[] = $PA['itemFormElName'];						// Register RTE in JS:		$pObj->additionalJS_post[] = $this->registerRTEinJS($pObj->RTEcounter);					// Set the save option for the RTE:		$pObj->additionalJS_submit[] = $this->setSaveRTE($pObj->RTEcounter, $pObj->formName, htmlspecialchars($PA['itemFormElName']));					// draw the textarea		$visibility = 'hidden';		$item = $this->triggerField($PA['itemFormElName']).'			<div id="pleasewait' . $pObj->RTEcounter . '" class="pleasewait" style="display: none;" >' . $TSFE->csConvObj->conv($TSFE->getLLL('Please wait',$this->LOCAL_LANG), $this->charset, $TSFE->renderCharset) . '</div>			<div id="editorWrap' . $pObj->RTEcounter . '" class="editorWrap" style="'. htmlspecialchars($this->RTEWrapStyle). '">			<textarea id="RTEarea'.$pObj->RTEcounter.'" name="'.htmlspecialchars($PA['itemFormElName']).'" style="'.htmlspecialchars($this->RTEdivStyle).'">'.t3lib_div::formatForTextarea($value).'</textarea>			</div>' . ($TYPO3_CONF_VARS['EXTCONF'][$this->ID]['enableDebugMode'] ? '<div id="HTMLAreaLog"></div>' : '') . '			';		return $item;	}		/**	 * Return the JS-Code for copy the HTML-Code from the editor in the hidden input field.	 * This is for submit function from the form.	 *	 * @return string		the JS-Code	 */	function setSaveRTE($number, $form, $textarea) {		return '		editornumber = '.$number.';		if (RTEarea[editornumber]) {			fields = document.getElementsByName(\'' . $textarea . '\');			field = fields.item(0);			if(field && field.tagName.toLowerCase() == \'textarea\') field.value = RTEarea[editornumber][\'editor\'].getHTML();		}		else {			OK=0;		}		';	}	}if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/rtehtmlarea/pi2/class.tx_rtehtmlarea_pi2.php'])	{	include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/rtehtmlarea/pi2/class.tx_rtehtmlarea_pi2.php']);}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -