Guest User

Untitled

a guest
Jul 30th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <?php
  2. // Например, class User extends COntroller
  3. $data = ['var' => 'Exapmle'];
  4. $this->view->showView('home', $data);
  5. // В конструкторе Controller
  6. $this->view = new View();
  7.  
  8. // HTML код
  9. <?php if ((класс User->)isLogged()): ?>
  10. <a href="/profile/">Profile</a>
  11. <?php endif; ?>
  12. <?php if (Error::isError()): ?>Возникла ошибка.<?php endif; ?>
  13.  
  14. // В контроллере
  15. $data = ['error' => Error::show(), 'user' => $this->user->getUserData()];
  16. $this->view->showView('user/sing_up', $data);
  17. // Во вью
  18. <?php if (!empty($error)): ?>
  19. <p style="color: #f00000;"><?php echo $error; ?></p>
  20. <?php endif; ?>
  21. <?php if ($user): ?>
  22. <a href="/profile/">Profile</a>
  23. <?php endif; ?>
Add Comment
Please, Sign In to add comment