mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
Change behavior of \@mobile directive in template v2 #2510
This commit is contained in:
parent
82195c3e14
commit
800eb2f444
4 changed files with 15 additions and 5 deletions
|
|
@ -104,8 +104,8 @@ class TemplateParser_v2
|
|||
'cannot' => ['if ($this->_v2_checkCapability(2, %s)):', 'endif;'],
|
||||
'canany' => ['if ($this->_v2_checkCapability(3, %s)):', 'endif;'],
|
||||
'guest' => ['if (!$this->user->isMember()):', 'endif;'],
|
||||
'desktop' => ["if (!\\Context::get('m')):", 'endif;'],
|
||||
'mobile' => ["if (\\Context::get('m')):", 'endif;'],
|
||||
'desktop' => ['if (!$this->_v2_isMobile()):', 'endif;'],
|
||||
'mobile' => ['if ($this->_v2_isMobile()):', 'endif;'],
|
||||
'env' => ['if (!empty($_ENV[%s])):', 'endif;'],
|
||||
'else' => ['else:'],
|
||||
'elseif' => ['elseif (%s):'],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue