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

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

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

Additional Inherited Members

- 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 categoryfeed.php.


Documentation des fonctions membres

JViewCategoryfeed::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 30 du fichier categoryfeed.php.

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

{
$document = JFactory::getDocument();
$extension = $app->input->getString('option');
$document->link = JRoute::_(JHelperRoute::getCategoryRoute($app->input->getInt('id'), $language = 0, $extension));
$app->input->set('limit', $app->get('feed_limit'));
$siteEmail = $app->get('mailfrom');
$fromName = $app->get('fromname');
$feedEmail = $app->get('feed_email', 'author');
$document->editor = $fromName;
if ($feedEmail != 'none')
{
$document->editorEmail = $siteEmail;
}
// Get some data from the model
$items = $this->get('Items');
$category = $this->get('Category');
foreach ($items as $item)
{
$this->reconcileNames($item);
// Strip html from feed item title
$title = $this->escape($item->title);
$title = html_entity_decode($title, ENT_COMPAT, 'UTF-8');
// URL link to article
$router = new JHelperRoute;
$link = JRoute::_($router->getRoute($item->id, $item->catid));
// Strip HTML from feed item description text.
$description = $item->description;
$author = $item->created_by_alias ? $item->created_by_alias : $item->author;
$date = isset($item->date) ? date('r', strtotime($item->date)) : '';
// Load individual item creator class.
$feeditem = new JFeedItem;
$feeditem->title = $title;
$feeditem->link = $link;
$feeditem->description = $description;
$feeditem->date = $date;
$feeditem->category = $category->title;
$feeditem->author = $author;
// We don't have the author email so we have to use site in both cases.
if ($feedEmail == 'site')
{
$feeditem->authorEmail = $siteEmail;
}
elseif ($feedEmail === 'author')
{
$feeditem->authorEmail = $item->author_email;
}
// Loads item information into RSS array
$document->addItem($feeditem);
}
}

+ Voici le graphe d'appel pour cette fonction :

JViewCategoryfeed::reconcileNames (   $item)
protected

Method to reconcile non standard names from components to usage in this class. Typically overriden in the component feed view class.

Paramètres:
object$itemThe item for a feed, an element of the $items array.
Renvoie:
void
Depuis:
3.2

Définition à la ligne 104 du fichier categoryfeed.php.

{
if (!property_exists($item, 'title') && property_exists($item, 'name'))
{
$item->title = $item->name;
}
}

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