100 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use dokuwiki\Debug\PropertyDeprecationHelper;
 | 
						|
 | 
						|
/**
 | 
						|
 * Define various types of modes used by the parser - they are used to
 | 
						|
 * populate the list of modes another mode accepts
 | 
						|
 */
 | 
						|
global $PARSER_MODES;
 | 
						|
$PARSER_MODES = array(
 | 
						|
    // containers are complex modes that can contain many other modes
 | 
						|
    // hr breaks the principle but they shouldn't be used in tables / lists
 | 
						|
    // so they are put here
 | 
						|
    'container' => array('listblock', 'table', 'quote', 'hr'),
 | 
						|
 | 
						|
    // some mode are allowed inside the base mode only
 | 
						|
    'baseonly' => array('header'),
 | 
						|
 | 
						|
    // modes for styling text -- footnote behaves similar to styling
 | 
						|
    'formatting' => array(
 | 
						|
        'strong', 'emphasis', 'underline', 'monospace',
 | 
						|
        'subscript', 'superscript', 'deleted', 'footnote'
 | 
						|
    ),
 | 
						|
 | 
						|
    // modes where the token is simply replaced - they can not contain any
 | 
						|
    // other modes
 | 
						|
    'substition' => array(
 | 
						|
        'acronym', 'smiley', 'wordblock', 'entity',
 | 
						|
        'camelcaselink', 'internallink', 'media',
 | 
						|
        'externallink', 'linebreak', 'emaillink',
 | 
						|
        'windowssharelink', 'filelink', 'notoc',
 | 
						|
        'nocache', 'multiplyentity', 'quotes', 'rss'
 | 
						|
    ),
 | 
						|
 | 
						|
    // modes which have a start and end token but inside which
 | 
						|
    // no other modes should be applied
 | 
						|
    'protected' => array('preformatted', 'code', 'file', 'php', 'html', 'htmlblock', 'phpblock'),
 | 
						|
 | 
						|
    // inside this mode no wiki markup should be applied but lineendings
 | 
						|
    // and whitespace isn't preserved
 | 
						|
    'disabled' => array('unformatted'),
 | 
						|
 | 
						|
    // used to mark paragraph boundaries
 | 
						|
    'paragraphs' => array('eol')
 | 
						|
);
 | 
						|
 | 
						|
/**
 | 
						|
 * Class Doku_Parser
 | 
						|
 *
 | 
						|
 * @deprecated 2018-05-04
 | 
						|
 */
 | 
						|
class Doku_Parser extends \dokuwiki\Parsing\Parser {
 | 
						|
    use PropertyDeprecationHelper {
 | 
						|
        __set as protected deprecationHelperMagicSet;
 | 
						|
        __get as protected deprecationHelperMagicGet;
 | 
						|
    }
 | 
						|
 | 
						|
    /** @inheritdoc */
 | 
						|
    public function __construct(Doku_Handler $handler = null) {
 | 
						|
        dbg_deprecated(\dokuwiki\Parsing\Parser::class);
 | 
						|
        $this->deprecatePublicProperty('modes', __CLASS__);
 | 
						|
        $this->deprecatePublicProperty('connected', __CLASS__);
 | 
						|
 | 
						|
        if ($handler === null) {
 | 
						|
            $handler = new Doku_Handler();
 | 
						|
        }
 | 
						|
 | 
						|
        parent::__construct($handler);
 | 
						|
    }
 | 
						|
 | 
						|
    public function __set($name, $value)
 | 
						|
    {
 | 
						|
 | 
						|
        if ($name === 'Handler') {
 | 
						|
            $this->handler = $value;
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        if ($name === 'Lexer') {
 | 
						|
            $this->lexer = $value;
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        $this->deprecationHelperMagicSet($name, $value);
 | 
						|
    }
 | 
						|
 | 
						|
    public function __get($name)
 | 
						|
    {
 | 
						|
        if ($name === 'Handler') {
 | 
						|
            return $this->handler;
 | 
						|
        }
 | 
						|
 | 
						|
        if ($name === 'Lexer') {
 | 
						|
            return $this->lexer;
 | 
						|
        }
 | 
						|
 | 
						|
        return $this->deprecationHelperMagicGet($name);
 | 
						|
    }
 | 
						|
}
 |