Guest User

/templates/tpl_main.php

a guest
Oct 23rd, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.34 KB | None | 0 0
  1. <?php
  2.    
  3.     if (!isset($header)
  4.             OR
  5.         !isset($tpl_changes)  
  6.             OR
  7.         !isset($color_on)
  8.             OR
  9.         !isset($count)
  10.             OR
  11.         !isset($tpl_citations))
  12.         throw new Exception('No_var');
  13. ?>
  14.  
  15. <!DOCTYPE html>
  16. <!-- отображает элементы главной страницы сайта -->
  17. <html>
  18.     <?php include_once($header); ?>
  19.     <body>
  20.         <!-- чейнджлог -->
  21.         <div class="right-top">
  22.             <?php include $tpl_changes; ?>
  23.         </div>
  24.  
  25.         <div class="btn" id="disable_colors">
  26.             <?php if ($color_on === true): ?>
  27.             <form action="" method="GET">
  28.                 <input type="hidden" name="color" value="0"/>
  29.                 <input type="submit" value="Отключить цвета"/>
  30.             </form>
  31.             <?php else: ?>
  32.                 <form action="" method="GET">
  33.                     <input type="hidden" name="color" value="1"/>
  34.                     <input type="submit" value="Включить цвета"/>
  35.                 </form>
  36.             <?php endif; ?>
  37.         </div>
  38.  
  39.         <div class="btn" id="new_quote">
  40.             <form action="" method="GET">
  41.                 <input type="hidden" name="new_quote"/>
  42.                 <input type="submit" value="Добавить новую цитату"/>
  43.             </form>
  44.         </div>
  45.        
  46.         <!-- текст цитат -->
  47.         <div id="quotes">
  48.         <?php include $tpl_citations; ?>
  49.         </div>
  50.  
  51.         <div class="right-bottom">
  52.             <?php include_once(DOC_ROOT . '/Phoenix_demo/Private/counter.php'); ?>
  53.         </div>
  54.     </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment