Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. class God {
  2.  function make_head() {
  3.  }
  4.  function make_layout() {
  5.   // tabela horyzontalna
  6.   $this->make_menu();
  7.   // tabela horyzontalna
  8.   $this->make_baner();
  9.   // tabela vertykalna
  10.   $this->make_left_menu();
  11.   // tabela vertykalna
  12.   $this->make_main_content();
  13.   // end tabele
  14.  }
  15.  function make_body() {
  16.    $this->make_layout();  
  17.  }
  18.  function make_foot() {
  19.  }
  20.  function make() {
  21.    $this->make_head();
  22.    $this->make_body();
  23.    $this->make_foot();
  24.  }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement