[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/src/MVC/View/ -> ViewInterface.php (source)

   1  <?php
   2  
   3  /**
   4   * Joomla! Content Management System
   5   *
   6   * @copyright   (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
   7   * @license     GNU General Public License version 2 or later; see LICENSE
   8   */
   9  
  10  namespace Joomla\CMS\MVC\View;
  11  
  12  use Joomla\CMS\MVC\Model\BaseDatabaseModel;
  13  
  14  // phpcs:disable PSR1.Files.SideEffects
  15  \defined('JPATH_PLATFORM') or die;
  16  // phpcs:enable PSR1.Files.SideEffects
  17  
  18  /**
  19   * Joomla Platform CMS Interface
  20   *
  21   * @since  4.0.0
  22   */
  23  interface ViewInterface
  24  {
  25      /**
  26       * Execute and display a template script.
  27       *
  28       * @param   string  $tpl  The name of the template file to parse; automatically searches through the template paths.
  29       *
  30       * @return  void
  31       *
  32       * @since   4.0.0
  33       */
  34      public function display($tpl = null);
  35  
  36      /**
  37       * Method to get the model object
  38       *
  39       * @param   string  $name  The name of the model (optional)
  40       *
  41       * @return  BaseDatabaseModel  The model object
  42       *
  43       * @since   3.0
  44       */
  45      public function getModel($name = null);
  46  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer