Sheet.php 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. namespace ZN\ViewObjects;
  3. class __USE_STATIC_ACCESS__Sheet implements SheetInterface
  4. {
  5. //----------------------------------------------------------------------------------------------------
  6. //
  7. // Yazar : Ozan UYKUN <ozanbote@windowslive.com> | <ozanbote@gmail.com>
  8. // Site : www.zntr.net
  9. // Lisans : The MIT License
  10. // Telif Hakkı: Copyright (c) 2012-2016, zntr.net
  11. //
  12. //----------------------------------------------------------------------------------------------------
  13. //----------------------------------------------------------------------------------------------------
  14. // Call Method
  15. //----------------------------------------------------------------------------------------------------
  16. //
  17. // __call()
  18. //
  19. //----------------------------------------------------------------------------------------------------
  20. use \CallUndefinedMethodTrait;
  21. //----------------------------------------------------------------------------------------------------
  22. // Style Sheet Trait
  23. //----------------------------------------------------------------------------------------------------
  24. //
  25. // traits()
  26. //
  27. //----------------------------------------------------------------------------------------------------
  28. use SheetTrait;
  29. protected $namespace = 'ZN\ViewObjects\Sheet\Helpers\\';
  30. //----------------------------------------------------------------------------------------------------
  31. // Animation
  32. //----------------------------------------------------------------------------------------------------
  33. //
  34. // @param void
  35. //
  36. //----------------------------------------------------------------------------------------------------
  37. public function animation($tag = false)
  38. {
  39. return uselib($this->namespace.'Animation', [$tag]);
  40. }
  41. //----------------------------------------------------------------------------------------------------
  42. // Manipulation
  43. //----------------------------------------------------------------------------------------------------
  44. //
  45. // @param void
  46. //
  47. //----------------------------------------------------------------------------------------------------
  48. public function manipulation()
  49. {
  50. return uselib($this->namespace.'Manipulation');
  51. }
  52. //----------------------------------------------------------------------------------------------------
  53. // Shadow
  54. //----------------------------------------------------------------------------------------------------
  55. //
  56. // @param void
  57. //
  58. //----------------------------------------------------------------------------------------------------
  59. public function shadow($tag = false)
  60. {
  61. return uselib($this->namespace.'Shadow', [$tag]);
  62. }
  63. //----------------------------------------------------------------------------------------------------
  64. // Transform
  65. //----------------------------------------------------------------------------------------------------
  66. //
  67. // @param void
  68. //
  69. //----------------------------------------------------------------------------------------------------
  70. public function transform($tag = false)
  71. {
  72. return uselib($this->namespace.'Transform', [$tag]);
  73. }
  74. //----------------------------------------------------------------------------------------------------
  75. // Transition
  76. //----------------------------------------------------------------------------------------------------
  77. //
  78. // @param void
  79. //
  80. //----------------------------------------------------------------------------------------------------
  81. public function transition($tag = false)
  82. {
  83. return uselib($this->namespace.'Transition', [$tag]);
  84. }
  85. }