12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- namespace ZN\ViewObjects;
- class __USE_STATIC_ACCESS__Sheet implements SheetInterface
- {
- //----------------------------------------------------------------------------------------------------
- //
- // Yazar : Ozan UYKUN <ozanbote@windowslive.com> | <ozanbote@gmail.com>
- // Site : www.zntr.net
- // Lisans : The MIT License
- // Telif Hakkı: Copyright (c) 2012-2016, zntr.net
- //
- //----------------------------------------------------------------------------------------------------
-
- //----------------------------------------------------------------------------------------------------
- // Call Method
- //----------------------------------------------------------------------------------------------------
- //
- // __call()
- //
- //----------------------------------------------------------------------------------------------------
- use \CallUndefinedMethodTrait;
-
- //----------------------------------------------------------------------------------------------------
- // Style Sheet Trait
- //----------------------------------------------------------------------------------------------------
- //
- // traits()
- //
- //----------------------------------------------------------------------------------------------------
- use SheetTrait;
-
- protected $namespace = 'ZN\ViewObjects\Sheet\Helpers\\';
-
- //----------------------------------------------------------------------------------------------------
- // Animation
- //----------------------------------------------------------------------------------------------------
- //
- // @param void
- //
- //----------------------------------------------------------------------------------------------------
- public function animation($tag = false)
- {
- return uselib($this->namespace.'Animation', [$tag]);
- }
-
- //----------------------------------------------------------------------------------------------------
- // Manipulation
- //----------------------------------------------------------------------------------------------------
- //
- // @param void
- //
- //----------------------------------------------------------------------------------------------------
- public function manipulation()
- {
- return uselib($this->namespace.'Manipulation');
- }
-
- //----------------------------------------------------------------------------------------------------
- // Shadow
- //----------------------------------------------------------------------------------------------------
- //
- // @param void
- //
- //----------------------------------------------------------------------------------------------------
- public function shadow($tag = false)
- {
- return uselib($this->namespace.'Shadow', [$tag]);
- }
-
- //----------------------------------------------------------------------------------------------------
- // Transform
- //----------------------------------------------------------------------------------------------------
- //
- // @param void
- //
- //----------------------------------------------------------------------------------------------------
- public function transform($tag = false)
- {
- return uselib($this->namespace.'Transform', [$tag]);
- }
-
- //----------------------------------------------------------------------------------------------------
- // Transition
- //----------------------------------------------------------------------------------------------------
- //
- // @param void
- //
- //----------------------------------------------------------------------------------------------------
- public function transition($tag = false)
- {
- return uselib($this->namespace.'Transition', [$tag]);
- }
- }
|