You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace dokuwiki\Parsing\ParserMode;
-
- /**
- * Defines a mode (syntax component) in the Parser
- */
- interface ModeInterface
- {
- /**
- * returns a number used to determine in which order modes are added
- *
- * @return int;
- */
- public function getSort();
-
- /**
- * Called before any calls to connectTo
- *
- * @return void
- */
- public function preConnect();
-
- /**
- * Connects the mode
- *
- * @param string $mode
- * @return void
- */
- public function connectTo($mode);
-
- /**
- * Called after all calls to connectTo
- *
- * @return void
- */
- public function postConnect();
-
- /**
- * Check if given mode is accepted inside this mode
- *
- * @param string $mode
- * @return bool
- */
- public function accepts($mode);
- }
|