Liste de tous les membres
Fonctions membres publiques |
| __construct ($options=array()) |
| render ($cache=false, $params=array()) |
| addItem (JFeedItem $item) |
| setType ($type) |
| getType () |
| getBuffer () |
| setBuffer ($content, $options=array()) |
| getMetaData ($name, $httpEquiv=false) |
| setMetaData ($name, $content, $http_equiv=false) |
| addScript ($url, $type="text/javascript", $defer=false, $async=false) |
| addScriptVersion ($url, $version=null, $type="text/javascript", $defer=false, $async=false) |
| addScriptDeclaration ($content, $type= 'text/javascript') |
| addStyleSheet ($url, $type= 'text/css', $media=null, $attribs=array()) |
| addStyleSheetVersion ($url, $version=null, $type="text/css", $media=null, $attribs=array()) |
| addStyleDeclaration ($content, $type= 'text/css') |
| setCharset ($type= 'utf-8') |
| getCharset () |
| setLanguage ($lang="en-gb") |
| getLanguage () |
| setDirection ($dir="ltr") |
| getDirection () |
| setTitle ($title) |
| getTitle () |
| setMediaVersion ($mediaVersion) |
| getMediaVersion () |
| setBase ($base) |
| getBase () |
| setDescription ($description) |
| getDescription () |
| setLink ($url) |
| getLink () |
| setGenerator ($generator) |
| getGenerator () |
| setModifiedDate ($date) |
| getModifiedDate () |
| setMimeEncoding ($type= 'text/html', $sync=true) |
| getMimeEncoding () |
| setLineEnd ($style) |
| _getLineEnd () |
| setTab ($string) |
| _getTab () |
| loadRenderer ($type) |
| parse ($params=array()) |
Description détaillée
Définition à la ligne 19 du fichier feed.php.
Documentation des constructeurs et destructeur
JDocumentFeed::__construct |
( |
|
$options = array() | ) |
|
Class constructor
- Paramètres:
-
array | $options | Associative array of options |
- Depuis:
- 11.1
Réimplémentée à partir de JDocument.
Définition à la ligne 174 du fichier feed.php.
{
$this->_type = 'feed';
}
Documentation des fonctions membres
Adds an JFeedItem to the feed.
- Paramètres:
-
JFeedItem | $item | The feeditem to add to the feed. |
- Renvoie:
- JDocumentFeed instance of $this to allow chaining
- Depuis:
- 11.1
Définition à la ligne 234 du fichier feed.php.
{
$this->items[] = $item;
return $this;
}
JDocumentFeed::render |
( |
|
$cache = false , |
|
|
|
$params = array() |
|
) |
| |
Render the document
- Paramètres:
-
boolean | $cache | If true, cache the output |
array | $params | Associative array of attributes |
- Renvoie:
- The rendered data
- Depuis:
- 11.1
- Exceptions:
-
- A faire:
- Make this cacheable
Réimplémentée à partir de JDocument.
Définition à la ligne 194 du fichier feed.php.
Références JText\_(), et JFactory\getApplication().
{
if (!is_a($renderer, 'JDocumentRenderer'))
{
throw new Exception(
JText::_(
'JGLOBAL_RESOURCE_NOT_FOUND'), 404);
}
$data = "<?xml version=\"1.0\" encoding=\"" . $this->_charset . "\"?>\n";
$data .=
"<!-- generator=\"" . $this->
getGenerator() .
"\" -->\n";
foreach ($this->_styleSheets as $src => $attr)
{
$data .= "<?xml-stylesheet href=\"$src\" type=\"" . $attr['mime'] . "\"?>\n";
}
$data .= $renderer->render();
return $data;
}
Documentation des données membres
JDocumentFeed::$category = "" |
JDocumentFeed::$copyright = "" |
JDocumentFeed::$docs = "" |
JDocumentFeed::$editor = "" |
JDocumentFeed::$editorEmail = "" |
JDocumentFeed::$image = null |
JDocumentFeed::$items = array() |
JDocumentFeed::$lastBuildDate = "" |
JDocumentFeed::$pubDate = "" |
JDocumentFeed::$rating = "" |
JDocumentFeed::$skipDays = "" |
JDocumentFeed::$skipHours = "" |
JDocumentFeed::$syndicationURL = "" |
JDocumentFeed::$webmaster = "" |
La documentation de cette classe a été générée à partir du fichier suivant :
- jplatform-13.1/joomla/document/feed/feed.php