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 JViewCategory
+ Graphe d'héritage de JViewCategory:
+ Graphe de collaboration de JViewCategory:

Liste de tous les membres

Fonctions membres publiques

 commonCategoryDisplay ()
 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 ()
 addFeed ()
- Fonctions membres protégées inherited from JViewLegacy
 _setPath ($type, $path)
 _addPath ($type, $path)
 _createFileName ($type, $parts=array())

Attributs protégés

 $state
 $items
 $category
 $categories
 $pagination
 $children
 $extension
 $viewName
 $defaultPageTitle
- 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 category.php.


Documentation des fonctions membres

JViewCategory::addFeed ( )
protected

Method to add an alternative feed link to a category layout.

Renvoie:
void
Depuis:
3.2

Définition à la ligne 264 du fichier category.php.

Références JRoute\_().

{
if ($this->params->get('show_feed_link', 1) == 1)
{
$link = '&format=feed&limitstart=';
$attribs = array('type' => 'application/rss+xml', 'title' => 'RSS 2.0');
$this->document->addHeadLink(JRoute::_($link . '&type=rss'), 'alternate', 'rel', $attribs);
$attribs = array('type' => 'application/atom+xml', 'title' => 'Atom 1.0');
$this->document->addHeadLink(JRoute::_($link . '&type=atom'), 'alternate', 'rel', $attribs);
}
}

+ Voici le graphe d'appel pour cette fonction :

JViewCategory::commonCategoryDisplay ( )

Method with common display elements used in category list displays

Renvoie:
void
Depuis:
3.2

Définition à la ligne 100 du fichier category.php.

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

{
$user = JFactory::getUser();
$params = $app->getParams();
// Get some data from the models
$state = $this->get('State');
$items = $this->get('Items');
$category = $this->get('Category');
$children = $this->get('Children');
$parent = $this->get('Parent');
$pagination = $this->get('Pagination');
// Check for errors.
if (count($errors = $this->get('Errors')))
{
JError::raiseError(500, implode("\n", $errors));
return false;
}
if ($category == false)
{
return JError::raiseError(404, JText::_('JGLOBAL_CATEGORY_NOT_FOUND'));
}
if ($parent == false)
{
return JError::raiseError(404, JText::_('JGLOBAL_CATEGORY_NOT_FOUND'));
}
// Check whether category access level allows access.
$groups = $user->getAuthorisedViewLevels();
if (!in_array($category->access, $groups))
{
return JError::raiseError(403, JText::_('JERROR_ALERTNOAUTHOR'));
}
// Setup the category parameters.
$cparams = $category->getParams();
$category->params = clone($params);
$category->params->merge($cparams);
$children = array($category->id => $children);
// Escape strings for HTML output
$this->pageclass_sfx = htmlspecialchars($params->get('pageclass_sfx'));
$maxLevel = $params->get('maxLevel', -1);
$this->maxLevel = &$maxLevel;
$this->state = &$state;
$this->items = &$items;
$this->category = &$category;
$this->children = &$children;
$this->params = &$params;
$this->parent = &$parent;
$this->pagination = &$pagination;
$this->user = &$user;
// Check for layout override only if this is not the active menu item
// If it is the active menu item, then the view and category id will match
$active = $app->getMenu()->getActive();
if ((!$active) || ((strpos($active->link, 'view=category') === false) || (strpos($active->link, '&id=' . (string) $this->category->id) === false)))
{
if ($layout = $category->params->get('category_layout'))
{
$this->setLayout($layout);
}
}
elseif (isset($active->query['layout']))
{
// We need to set the layout in case this is an alternative menu item (with an alternative layout)
$this->setLayout($active->query['layout']);
}
$this->category->tags = new JHelperTags;
$this->category->tags->getItemTags($this->extension . '.category', $this->category->id);
}

+ Voici le graphe d'appel pour cette fonction :

JViewCategory::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 191 du fichier category.php.

{
$this->prepareDocument();
return parent::display($tpl);
}
JViewCategory::prepareDocument ( )
protected

Method to prepares the document

Renvoie:
void
Depuis:
3.2

Définition à la ligne 205 du fichier category.php.

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

{
$menus = $app->getMenu();
$this->pathway = $app->getPathway();
$title = null;
// Because the application sets a default page title, we need to get it from the menu item itself
$this->menu = $menus->getActive();
if ($this->menu)
{
$this->params->def('page_heading', $this->params->get('page_title', $this->menu->title));
}
else
{
$this->params->def('page_heading', JText::_($this->defaultPageTitle));
}
$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

JViewCategory::$categories
protected

Définition à la ligne 51 du fichier category.php.

JViewCategory::$category
protected

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

JViewCategory::$children
protected

Définition à la ligne 67 du fichier category.php.

JViewCategory::$defaultPageTitle
protected

Définition à la ligne 91 du fichier category.php.

JViewCategory::$extension
protected

Définition à la ligne 75 du fichier category.php.

JViewCategory::$items
protected

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

JViewCategory::$pagination
protected

Définition à la ligne 59 du fichier category.php.

JViewCategory::$state
protected

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

JViewCategory::$viewName
protected

Définition à la ligne 83 du fichier category.php.


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