v1.php 235 B

123456789101112131415
  1. <?php
  2. namespace zin;
  3. class center extends wg
  4. {
  5. protected function build()
  6. {
  7. return div
  8. (
  9. setClass("center"),
  10. set($this->getRestProps()),
  11. $this->children()
  12. );
  13. }
  14. }