[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/Parsing/ParserMode/ -> Multiplyentity.php (source)

   1  <?php
   2  
   3  namespace dokuwiki\Parsing\ParserMode;
   4  
   5  /**
   6   * Implements the 640x480 replacement
   7   */
   8  class Multiplyentity extends AbstractMode
   9  {
  10  
  11      /** @inheritdoc */
  12      public function connectTo($mode)
  13      {
  14  
  15          $this->Lexer->addSpecialPattern(
  16              '(?<=\b)(?:[1-9]|\d{2,})[xX]\d+(?=\b)',
  17              $mode,
  18              'multiplyentity'
  19          );
  20      }
  21  
  22      /** @inheritdoc */
  23      public function getSort()
  24      {
  25          return 270;
  26      }
  27  }