PageRenderTime 41ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/3.0/modules/developer/views/theme.txt.php

http://github.com/gallery/gallery3-contrib
PHP | 157 lines | 112 code | 27 blank | 18 comment | 27 complexity | 7ca53422751b7701dd130394c3f63c6b MD5 | raw file
Possible License(s): GPL-3.0, GPL-2.0, LGPL-2.1
  1. <?php defined("SYSPATH") or die("No direct script access.") ?>
  2. <?= "<?php defined(\"SYSPATH\") or die(\"No direct script access.\");" ?>
  3. /**
  4. * Gallery - a web based photo album viewer and editor
  5. * Copyright (C) 2000-2013 Bharat Mediratta
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or (at
  10. * your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
  20. */
  21. class <?= $module ?>_theme {
  22. <? if (!empty($callbacks["album_blocks"])): ?>
  23. static function album_blocks($theme) {
  24. }
  25. <? endif ?>
  26. <? if (!empty($callbacks["album_bottom"])): ?>
  27. static function album_bottom($theme) {
  28. }
  29. <? endif ?>
  30. <? if (!empty($callbacks["album_top"])): ?>
  31. static function album_top($theme) {
  32. }
  33. <? endif ?>
  34. <? if (!empty($callbacks["admin_credits"])): ?>
  35. static function admin_credits($theme) {
  36. }
  37. <? endif ?>
  38. <? if (!empty($callbacks["photo"])): ?>
  39. static function admin_footer($theme) {
  40. }
  41. <? endif ?>
  42. <? if (!empty($callbacks["admin_header_top"])): ?>
  43. static function admin_header_top($theme) {
  44. }
  45. <? endif ?>
  46. <? if (!empty($callbacks["admin_header_bottom"])): ?>
  47. static function admin_header_bottom($theme) {
  48. }
  49. <? endif ?>
  50. <? if (!empty($callbacks["admin_page_bottom"])): ?>
  51. static function admin_page_bottom($theme) {
  52. }
  53. <? endif ?>
  54. <? if (!empty($callbacks["admin_page_top"])): ?>
  55. static function admin_page_top($theme) {
  56. }
  57. <? endif ?>
  58. <? if (!empty($callbacks["admin_head"])): ?>
  59. static function admin_head($theme) {
  60. }
  61. <? endif ?>
  62. <? if (!empty($callbacks["credits"])): ?>
  63. static function credits($theme) {
  64. }
  65. <? endif ?>
  66. <? if (!empty($callbacks["dynamic_bottom"])): ?>
  67. static function dynamic_bottom($theme) {
  68. }
  69. <? endif ?>
  70. <? if (!empty($callbacks["dynamic_top"])): ?>
  71. static function dynamic_top($theme) {
  72. }
  73. <? endif ?>
  74. <? if (!empty($callbacks["footer"])): ?>
  75. static function footer($theme) {
  76. }
  77. <? endif ?>
  78. <? if (!empty($callbacks["head"])): ?>
  79. static function head($theme) {
  80. }
  81. <? endif ?>
  82. <? if (!empty($callbacks["header_bottom"])): ?>
  83. static function header_bottom($theme) {
  84. }
  85. <? endif ?>
  86. <? if (!empty($callbacks["header_top"])): ?>
  87. static function header_top($theme) {
  88. }
  89. <? endif ?>
  90. <? if (!empty($callbacks["page_bottom"])): ?>
  91. static function page_bottom($theme) {
  92. }
  93. <? endif ?>
  94. <? if (!empty($callbacks["pae_top"])): ?>
  95. static function page_top($theme) {
  96. }
  97. <? endif ?>
  98. <? if (!empty($callbacks["photo_blocks"])): ?>
  99. static function photo_blocks($theme) {
  100. }
  101. <? endif ?>
  102. <? if (!empty($callbacks["photo_bottom"])): ?>
  103. static function photo_bottom($theme) {
  104. }
  105. <? endif ?>
  106. <? if (!empty($callbacks["photo_top"])): ?>
  107. static function photo_top($theme) {
  108. }
  109. <? endif ?>
  110. <? if (!empty($callbacks["sidebar_bottom"])): ?>
  111. static function sidebar_bottom($theme) {
  112. }
  113. <? endif ?>
  114. <? if (!empty($callbacks["sidebar_top"])): ?>
  115. static function sidebar_top($theme) {
  116. }
  117. <? endif ?>
  118. <? if (!empty($callbacks["thumb_bottom"])): ?>
  119. static function thumb_bottom($theme, $child) {
  120. }
  121. <? endif ?>
  122. <? if (!empty($callbacks["thumb_info"])): ?>
  123. static function thumb_info($theme, $child) {
  124. }
  125. <? endif ?>
  126. <? if (!empty($callbacks["thumb_top"])): ?>
  127. static function thumb_top($theme, $child) {
  128. }
  129. <? endif ?>
  130. }