Add script 'get-openssl-version.sh'.
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace dokuwiki\Parsing\ParserMode;
|
||||
|
||||
class Nocache extends AbstractMode
|
||||
{
|
||||
|
||||
/** @inheritdoc */
|
||||
public function connectTo($mode)
|
||||
{
|
||||
$this->Lexer->addSpecialPattern('~~NOCACHE~~', $mode, 'nocache');
|
||||
}
|
||||
|
||||
/** @inheritdoc */
|
||||
public function getSort()
|
||||
{
|
||||
return 40;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user