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.

15 lines
350 B

  1. <?php
  2. /**
  3. * @copyright NetMonsters <team@netmonsters.ru>
  4. * @link http://netmonsters.ru
  5. * @package Majestic
  6. * @subpackage View
  7. * @since 2010-02-25
  8. */
  9. interface iView
  10. {
  11. public function assign($name, $value = null);
  12. public function prepend($name, $value);
  13. public function append($name, $value);
  14. public function fetch($template);
  15. }