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 JFeedLink

Liste de tous les membres

Fonctions membres publiques

 __construct ($uri=null, $relation=null, $type=null, $language=null, $title=null, $length=null)

Attributs publics

 $uri
 $relation
 $type
 $language
 $title
 $length

Description détaillée

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


Documentation des constructeurs et destructeur

JFeedLink::__construct (   $uri = null,
  $relation = null,
  $type = null,
  $language = null,
  $title = null,
  $length = null 
)

Constructor.

Paramètres:
string$uriThe URI to the linked resource.
string$relationThe relationship between the feed and the linked resource.
string$typeThe resource type.
string$languageThe language of the resource found at the given URI.
string$titleThe title of the resource.
integer$lengthThe length of the resource in bytes.
Depuis:
12.3
Exceptions:
InvalidArgumentException

Définition à la ligne 82 du fichier link.php.

{
$this->uri = $uri;
$this->relation = $relation;
$this->type = $type;
$this->language = $language;
$this->title = $title;
// Validate the length input.
if (isset($length) && !is_numeric($length))
{
throw new InvalidArgumentException('Length must be numeric.');
}
$this->length = (int) $length;
}

Documentation des données membres

JFeedLink::$language

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

JFeedLink::$length

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

JFeedLink::$relation

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

JFeedLink::$title

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

JFeedLink::$type

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

JFeedLink::$uri

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


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