[Typo3-dev] Interest link states EXTURL and SHORTCUT

tapio tapio.markula at dnainternet.net
Fri May 13 17:16:23 CEST 2005


Hi

SPC refers to a doctype. External URLs and shortcuts could have 
corresponding link states, for example EXTURL and SHORTCUT.

I tried to alter the core php, but failed.

I added for example:

			// Prepare external Url settings, overriding normal settings
		if ($this->mconf['EXTURL'])	{
			$EXTURLinit = 0;	// Flag: If $SPC is generated
			reset($NOconf);
			while (list($key,$val)=each($NOconf))	{	// Find spacers
				if ($this->isItemState('EXTURL',$key))	{
					if (!$EXTURLinit)	{	// if this is the first extURL, we must 
generate EXTURL
						$EXTURLconf = 
$this->tmpl->splitConfArray($this->mconf['EXTURL.'],$splitCount);
						$EXTURLinit = 1;
					}
					$NOconf[$key] = $EXTURLconf[$key];		// Substitute normal with extUrl
				}
			}

Could someone interested about looking at the modifications?




More information about the TYPO3-dev mailing list