You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
382 B

  1. <?php
  2. /**
  3. * @copyright NetMonsters <team@netmonsters.ru>
  4. * @link http://netmonsters.ru
  5. * @package Majestic
  6. * @subpackage View
  7. * @since 2010-03-09
  8. * @version SVN: $Id$
  9. * @filesource $URL$
  10. */
  11. abstract class ViewHelper
  12. {
  13. /**
  14. * @var PHPView
  15. */
  16. protected $view = null;
  17. public function __construct($view)
  18. {
  19. $this->view = $view;
  20. }
  21. }