Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence de la classe JViewCategories
+ Graphe d'héritage de JViewCategories:
+ Graphe de collaboration de JViewCategories:

Liste de tous les membres

Fonctions membres publiques

 display ($tpl=null)
- Fonctions membres publiques inherited from JViewLegacy
 __construct ($config=array())
 assign ()
 assignRef ($key, &$val)
 escape ($var)
 get ($property, $default=null)
 getModel ($name=null)
 getLayout ()
 getLayoutTemplate ()
 getName ()
 setModel ($model, $default=false)
 setLayout ($layout)
 setLayoutExt ($value)
 setEscape ($spec)
 addTemplatePath ($path)
 addHelperPath ($path)
 loadTemplate ($tpl=null)
 loadHelper ($hlp=null)
 getForm ()
- Fonctions membres publiques inherited from JObject
 __toString ()
 def ($property, $default=null)
 getProperties ($public=true)
 getError ($i=null, $toString=true)
 getErrors ()
 set ($property, $value=null)
 setProperties ($properties)
 setError ($error)

Fonctions membres protégées

 prepareDocument ()
- Fonctions membres protégées inherited from JViewLegacy
 _setPath ($type, $path)
 _addPath ($type, $path)
 _createFileName ($type, $parts=array())

Attributs protégés

 $state
 $items
 $pageHeading
- Attributs protégés inherited from JViewLegacy
 $_name = null
 $_models = array()
 $_basePath = null
 $_defaultModel = null
 $_layout = 'default'
 $_layoutExt = 'php'
 $_layoutTemplate = '_'
 $_path = array('template' => array(), 'helper' => array())
 $_template = null
 $_output = null
 $_escape = 'htmlspecialchars'
 $_charset = 'UTF-8'
- Attributs protégés inherited from JObject
 $_errors = array()

Description détaillée

Définition à la ligne 19 du fichier categories.php.


Documentation des fonctions membres

JViewCategories::display (   $tpl = null)

Execute and display a template script.

Paramètres:
string$tplThe name of the template file to parse; automatically searches through the template paths.
Renvoie:
mixed A string if successful, otherwise a Error object.
Depuis:
3.2

Réimplémentée à partir de JViewLegacy.

Définition à la ligne 54 du fichier categories.php.

Références JText\_(), et JFactory\getApplication().

{
$state = $this->get('State');
$items = $this->get('Items');
$parent = $this->get('Parent');
// Check for errors.
if (count($errors = $this->get('Errors')))
{
$app->enqueueMessage($errors, 'error');
return false;
}
if ($items === false)
{
$app->enqueueMessage(JText::_('JGLOBAL_CATEGORY_NOT_FOUND'), 'error');
return false;
}
if ($parent == false)
{
$app->enqueueMessage(JText::_('JGLOBAL_CATEGORY_NOT_FOUND'), 'error');
return false;
}
$params = &$state->params;
$items = array($parent->id => $items);
// Escape strings for HTML output
$this->pageclass_sfx = htmlspecialchars($params->get('pageclass_sfx'));
$this->maxLevelcat = $params->get('maxLevelcat', -1);
$this->params = &$params;
$this->parent = &$parent;
$this->items = &$items;
$this->prepareDocument();
return parent::display($tpl);
}

+ Voici le graphe d'appel pour cette fonction :

JViewCategories::prepareDocument ( )
protected

Prepares the document

Renvoie:
void
Depuis:
3.2

Définition à la ligne 108 du fichier categories.php.

Références JText\_(), JFactory\getApplication(), et JText\sprintf().

{
$menus = $app->getMenu();
// Because the application sets a default page title, we need to get it from the menu item itself
$menu = $menus->getActive();
if ($menu)
{
$this->params->def('page_heading', $this->params->get('page_title', $menu->title));
}
else
{
$this->params->def('page_heading', JText::_($this->pageHeading));
}
$title = $this->params->get('page_title', '');
if (empty($title))
{
$title = $app->get('sitename');
}
elseif ($app->get('sitename_pagetitles', 0) == 1)
{
$title = JText::sprintf('JPAGETITLE', $app->get('sitename'), $title);
}
elseif ($app->get('sitename_pagetitles', 0) == 2)
{
$title = JText::sprintf('JPAGETITLE', $title, $app->get('sitename'));
}
$this->document->setTitle($title);
if ($this->params->get('menu-meta_description'))
{
$this->document->setDescription($this->params->get('menu-meta_description'));
}
if ($this->params->get('menu-meta_keywords'))
{
$this->document->setMetadata('keywords', $this->params->get('menu-meta_keywords'));
}
if ($this->params->get('robots'))
{
$this->document->setMetadata('robots', $this->params->get('robots'));
}
}

+ Voici le graphe d'appel pour cette fonction :


Documentation des données membres

JViewCategories::$items
protected

Définition à la ligne 35 du fichier categories.php.

JViewCategories::$pageHeading
protected

Définition à la ligne 43 du fichier categories.php.

JViewCategories::$state
protected

Définition à la ligne 27 du fichier categories.php.


La documentation de cette classe a été générée à partir du fichier suivant :