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 SimplePie_Enclosure

Liste de tous les membres

Fonctions membres publiques

 SimplePie_Enclosure ($link=null, $type=null, $length=null, $javascript=null, $bitrate=null, $captions=null, $categories=null, $channels=null, $copyright=null, $credits=null, $description=null, $duration=null, $expression=null, $framerate=null, $hashes=null, $height=null, $keywords=null, $lang=null, $medium=null, $player=null, $ratings=null, $restrictions=null, $samplingrate=null, $thumbnails=null, $title=null, $width=null)
 __toString ()
 get_bitrate ()
 get_caption ($key=0)
 get_captions ()
 get_category ($key=0)
 get_categories ()
 get_channels ()
 get_copyright ()
 get_credit ($key=0)
 get_credits ()
 get_description ()
 get_duration ($convert=false)
 get_expression ()
 get_extension ()
 get_framerate ()
 get_handler ()
 get_hash ($key=0)
 get_hashes ()
 get_height ()
 get_language ()
 get_keyword ($key=0)
 get_keywords ()
 get_length ()
 get_link ()
 get_medium ()
 get_player ()
 get_rating ($key=0)
 get_ratings ()
 get_restriction ($key=0)
 get_restrictions ()
 get_sampling_rate ()
 get_size ()
 get_thumbnail ($key=0)
 get_thumbnails ()
 get_title ()
 get_type ()
 get_width ()
 native_embed ($options='')
 embed ($options= '', $native=false)
 get_real_type ($find_handler=false)

Attributs publics

 $bitrate
 $captions
 $categories
 $channels
 $copyright
 $credits
 $description
 $duration
 $expression
 $framerate
 $handler
 $hashes
 $height
 $javascript
 $keywords
 $lang
 $length
 $link
 $medium
 $player
 $ratings
 $restrictions
 $samplingrate
 $thumbnails
 $title
 $type
 $width

Description détaillée

Définition à la ligne 6394 du fichier simplepie.php.


Documentation des fonctions membres

SimplePie_Enclosure::__toString ( )

Définition à la ligne 6462 du fichier simplepie.php.

{
// There is no $this->data here
return md5(serialize($this));
}
SimplePie_Enclosure::embed (   $options = '',
  $native = false 
)
A faire:
If the dimensions for media:content are defined, use them when width/height are set to 'auto'.

Définition à la ligne 6919 du fichier simplepie.php.

Références $handler, $height, $type, $width, get_extension(), get_handler(), get_link(), et get_real_type().

Référencé par native_embed().

{
// Set up defaults
$audio = '';
$video = '';
$alt = '';
$altclass = '';
$loop = 'false';
$width = 'auto';
$height = 'auto';
$bgcolor = '#ffffff';
$mediaplayer = '';
$widescreen = false;
$handler = $this->get_handler();
$type = $this->get_real_type();
// Process options and reassign values as necessary
if (is_array($options))
{
extract($options);
}
else
{
$options = explode(',', $options);
foreach($options as $option)
{
$opt = explode(':', $option, 2);
if (isset($opt[0], $opt[1]))
{
$opt[0] = trim($opt[0]);
$opt[1] = trim($opt[1]);
switch ($opt[0])
{
case 'audio':
$audio = $opt[1];
break;
case 'video':
$video = $opt[1];
break;
case 'alt':
$alt = $opt[1];
break;
case 'altclass':
$altclass = $opt[1];
break;
case 'loop':
$loop = $opt[1];
break;
case 'width':
$width = $opt[1];
break;
case 'height':
$height = $opt[1];
break;
case 'bgcolor':
$bgcolor = $opt[1];
break;
case 'mediaplayer':
$mediaplayer = $opt[1];
break;
case 'widescreen':
$widescreen = $opt[1];
break;
}
}
}
}
$mime = explode('/', $type, 2);
$mime = $mime[0];
// Process values for 'auto'
if ($width === 'auto')
{
if ($mime === 'video')
{
if ($height === 'auto')
{
$width = 480;
}
elseif ($widescreen)
{
$width = round((intval($height)/9)*16);
}
else
{
$width = round((intval($height)/3)*4);
}
}
else
{
$width = '100%';
}
}
if ($height === 'auto')
{
if ($mime === 'audio')
{
$height = 0;
}
elseif ($mime === 'video')
{
if ($width === 'auto')
{
if ($widescreen)
{
$height = 270;
}
else
{
$height = 360;
}
}
elseif ($widescreen)
{
$height = round((intval($width)/16)*9);
}
else
{
$height = round((intval($width)/4)*3);
}
}
else
{
$height = 376;
}
}
elseif ($mime === 'audio')
{
$height = 0;
}
// Set proper placeholder value
if ($mime === 'audio')
{
$placeholder = $audio;
}
elseif ($mime === 'video')
{
$placeholder = $video;
}
$embed = '';
// Make sure the JS library is included
if (!$native)
{
static $javascript_outputted = null;
if (!$javascript_outputted && $this->javascript)
{
$embed .= '<script type="text/javascript" src="?' . htmlspecialchars($this->javascript) . '"></script>';
$javascript_outputted = true;
}
}
// Odeo Feed MP3's
if ($handler === 'odeo')
{
if ($native)
{
$embed .= '<embed src="http://odeo.com/flash/audio_player_fullsize.swf" pluginspage="http://adobe.com/go/getflashplayer" type="application/x-shockwave-flash" quality="high" width="440" height="80" wmode="transparent" allowScriptAccess="any" flashvars="valid_sample_rate=true&external_url=' . $this->get_link() . '"></embed>';
}
else
{
$embed .= '<script type="text/javascript">embed_odeo("' . $this->get_link() . '");</script>';
}
}
// Flash
elseif ($handler === 'flash')
{
if ($native)
{
$embed .= "<embed src=\"" . $this->get_link() . "\" pluginspage=\"http://adobe.com/go/getflashplayer\" type=\"$type\" quality=\"high\" width=\"$width\" height=\"$height\" bgcolor=\"$bgcolor\" loop=\"$loop\"></embed>";
}
else
{
$embed .= "<script type='text/javascript'>embed_flash('$bgcolor', '$width', '$height', '" . $this->get_link() . "', '$loop', '$type');</script>";
}
}
// Flash Media Player file types.
// Preferred handler for MP3 file types.
elseif ($handler === 'fmedia' || ($handler === 'mp3' && $mediaplayer !== ''))
{
$height += 20;
if ($native)
{
$embed .= "<embed src=\"$mediaplayer\" pluginspage=\"http://adobe.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" quality=\"high\" width=\"$width\" height=\"$height\" wmode=\"transparent\" flashvars=\"file=" . rawurlencode($this->get_link().'?file_extension=.'.$this->get_extension()) . "&autostart=false&repeat=$loop&showdigits=true&showfsbutton=false\"></embed>";
}
else
{
$embed .= "<script type='text/javascript'>embed_flv('$width', '$height', '" . rawurlencode($this->get_link().'?file_extension=.'.$this->get_extension()) . "', '$placeholder', '$loop', '$mediaplayer');</script>";
}
}
// QuickTime 7 file types. Need to test with QuickTime 6.
// Only handle MP3's if the Flash Media Player is not present.
elseif ($handler === 'quicktime' || ($handler === 'mp3' && $mediaplayer === ''))
{
$height += 16;
if ($native)
{
if ($placeholder !== '')
{
$embed .= "<embed type=\"$type\" style=\"cursor:hand; cursor:pointer;\" href=\"" . $this->get_link() . "\" src=\"$placeholder\" width=\"$width\" height=\"$height\" autoplay=\"false\" target=\"myself\" controller=\"false\" loop=\"$loop\" scale=\"aspect\" bgcolor=\"$bgcolor\" pluginspage=\"http://apple.com/quicktime/download/\"></embed>";
}
else
{
$embed .= "<embed type=\"$type\" style=\"cursor:hand; cursor:pointer;\" src=\"" . $this->get_link() . "\" width=\"$width\" height=\"$height\" autoplay=\"false\" target=\"myself\" controller=\"true\" loop=\"$loop\" scale=\"aspect\" bgcolor=\"$bgcolor\" pluginspage=\"http://apple.com/quicktime/download/\"></embed>";
}
}
else
{
$embed .= "<script type='text/javascript'>embed_quicktime('$type', '$bgcolor', '$width', '$height', '" . $this->get_link() . "', '$placeholder', '$loop');</script>";
}
}
// Windows Media
elseif ($handler === 'wmedia')
{
$height += 45;
if ($native)
{
$embed .= "<embed type=\"application/x-mplayer2\" src=\"" . $this->get_link() . "\" autosize=\"1\" width=\"$width\" height=\"$height\" showcontrols=\"1\" showstatusbar=\"0\" showdisplay=\"0\" autostart=\"0\"></embed>";
}
else
{
$embed .= "<script type='text/javascript'>embed_wmedia('$width', '$height', '" . $this->get_link() . "');</script>";
}
}
// Everything else
else $embed .= '<a href="' . $this->get_link() . '" class="' . $altclass . '">' . $alt . '</a>';
return $embed;
}

+ Voici le graphe d'appel pour cette fonction :

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_bitrate ( )

Définition à la ligne 6468 du fichier simplepie.php.

Références $bitrate.

{
if ($this->bitrate !== null)
{
}
else
{
return null;
}
}
SimplePie_Enclosure::get_caption (   $key = 0)

Définition à la ligne 6480 du fichier simplepie.php.

Références $captions, et get_captions().

{
$captions = $this->get_captions();
if (isset($captions[$key]))
{
return $captions[$key];
}
else
{
return null;
}
}

+ Voici le graphe d'appel pour cette fonction :

SimplePie_Enclosure::get_captions ( )

Définition à la ligne 6493 du fichier simplepie.php.

Références $captions.

Référencé par get_caption().

{
if ($this->captions !== null)
{
}
else
{
return null;
}
}

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_categories ( )

Définition à la ligne 6518 du fichier simplepie.php.

Références $categories.

Référencé par get_category().

{
if ($this->categories !== null)
{
}
else
{
return null;
}
}

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_category (   $key = 0)

Définition à la ligne 6505 du fichier simplepie.php.

Références $categories, et get_categories().

{
if (isset($categories[$key]))
{
return $categories[$key];
}
else
{
return null;
}
}

+ Voici le graphe d'appel pour cette fonction :

SimplePie_Enclosure::get_channels ( )

Définition à la ligne 6530 du fichier simplepie.php.

Références $channels.

{
if ($this->channels !== null)
{
}
else
{
return null;
}
}
SimplePie_Enclosure::get_copyright ( )

Définition à la ligne 6542 du fichier simplepie.php.

Références $copyright.

{
if ($this->copyright !== null)
{
}
else
{
return null;
}
}
SimplePie_Enclosure::get_credit (   $key = 0)

Définition à la ligne 6554 du fichier simplepie.php.

Références $credits, et get_credits().

{
$credits = $this->get_credits();
if (isset($credits[$key]))
{
return $credits[$key];
}
else
{
return null;
}
}

+ Voici le graphe d'appel pour cette fonction :

SimplePie_Enclosure::get_credits ( )

Définition à la ligne 6567 du fichier simplepie.php.

Références $credits.

Référencé par get_credit().

{
if ($this->credits !== null)
{
}
else
{
return null;
}
}

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_description ( )

Définition à la ligne 6579 du fichier simplepie.php.

Références $description.

{
if ($this->description !== null)
{
}
else
{
return null;
}
}
SimplePie_Enclosure::get_duration (   $convert = false)

Définition à la ligne 6591 du fichier simplepie.php.

Références $duration, et SimplePie_Misc\time_hms().

{
if ($this->duration !== null)
{
if ($convert)
{
$time = SimplePie_Misc::time_hms($this->duration);
return $time;
}
else
{
}
}
else
{
return null;
}
}

+ Voici le graphe d'appel pour cette fonction :

SimplePie_Enclosure::get_expression ( )

Définition à la ligne 6611 du fichier simplepie.php.

Références $expression.

{
if ($this->expression !== null)
{
}
else
{
return 'full';
}
}
SimplePie_Enclosure::get_extension ( )

Définition à la ligne 6623 du fichier simplepie.php.

Références SimplePie_Misc\parse_url().

Référencé par embed(), et get_real_type().

{
if ($this->link !== null)
{
$url = SimplePie_Misc::parse_url($this->link);
if ($url['path'] !== '')
{
return pathinfo($url['path'], PATHINFO_EXTENSION);
}
}
return null;
}

+ Voici le graphe d'appel pour cette fonction :

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_framerate ( )

Définition à la ligne 6636 du fichier simplepie.php.

Références $framerate.

{
if ($this->framerate !== null)
{
}
else
{
return null;
}
}
SimplePie_Enclosure::get_handler ( )

Définition à la ligne 6648 du fichier simplepie.php.

Références get_real_type().

Référencé par embed(), et SimplePie_Enclosure().

{
return $this->get_real_type(true);
}

+ Voici le graphe d'appel pour cette fonction :

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_hash (   $key = 0)

Définition à la ligne 6653 du fichier simplepie.php.

Références $hashes, et get_hashes().

{
$hashes = $this->get_hashes();
if (isset($hashes[$key]))
{
return $hashes[$key];
}
else
{
return null;
}
}

+ Voici le graphe d'appel pour cette fonction :

SimplePie_Enclosure::get_hashes ( )

Définition à la ligne 6666 du fichier simplepie.php.

Références $hashes.

Référencé par get_hash().

{
if ($this->hashes !== null)
{
return $this->hashes;
}
else
{
return null;
}
}

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_height ( )

Définition à la ligne 6678 du fichier simplepie.php.

Références $height.

{
if ($this->height !== null)
{
return $this->height;
}
else
{
return null;
}
}
SimplePie_Enclosure::get_keyword (   $key = 0)

Définition à la ligne 6702 du fichier simplepie.php.

Références $keywords, et get_keywords().

{
$keywords = $this->get_keywords();
if (isset($keywords[$key]))
{
return $keywords[$key];
}
else
{
return null;
}
}

+ Voici le graphe d'appel pour cette fonction :

SimplePie_Enclosure::get_keywords ( )

Définition à la ligne 6715 du fichier simplepie.php.

Références $keywords.

Référencé par get_keyword().

{
if ($this->keywords !== null)
{
}
else
{
return null;
}
}

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_language ( )

Définition à la ligne 6690 du fichier simplepie.php.

Références $lang.

{
if ($this->lang !== null)
{
return $this->lang;
}
else
{
return null;
}
}
SimplePie_Enclosure::get_length ( )

Définition à la ligne 6727 du fichier simplepie.php.

Références $length.

Référencé par get_size().

{
if ($this->length !== null)
{
return $this->length;
}
else
{
return null;
}
}

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_link ( )

Définition à la ligne 6739 du fichier simplepie.php.

Référencé par embed(), et get_real_type().

{
if ($this->link !== null)
{
return urldecode($this->link);
}
else
{
return null;
}
}

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_medium ( )

Définition à la ligne 6751 du fichier simplepie.php.

Références $medium.

{
if ($this->medium !== null)
{
return $this->medium;
}
else
{
return null;
}
}
SimplePie_Enclosure::get_player ( )

Définition à la ligne 6763 du fichier simplepie.php.

Références $player.

{
if ($this->player !== null)
{
return $this->player;
}
else
{
return null;
}
}
SimplePie_Enclosure::get_rating (   $key = 0)

Définition à la ligne 6775 du fichier simplepie.php.

Références $ratings, et get_ratings().

{
$ratings = $this->get_ratings();
if (isset($ratings[$key]))
{
return $ratings[$key];
}
else
{
return null;
}
}

+ Voici le graphe d'appel pour cette fonction :

SimplePie_Enclosure::get_ratings ( )

Définition à la ligne 6788 du fichier simplepie.php.

Références $ratings.

Référencé par get_rating().

{
if ($this->ratings !== null)
{
}
else
{
return null;
}
}

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_real_type (   $find_handler = false)

Définition à la ligne 7167 du fichier simplepie.php.

Références $type, get_extension(), get_link(), et get_type().

Référencé par embed(), et get_handler().

{
// If it's Odeo, let's get it out of the way.
if (substr(strtolower($this->get_link()), 0, 15) === 'http://odeo.com')
{
return 'odeo';
}
// Mime-types by handler.
$types_flash = array('application/x-shockwave-flash', 'application/futuresplash'); // Flash
$types_fmedia = array('video/flv', 'video/x-flv','flv-application/octet-stream'); // Flash Media Player
$types_quicktime = array('audio/3gpp', 'audio/3gpp2', 'audio/aac', 'audio/x-aac', 'audio/aiff', 'audio/x-aiff', 'audio/mid', 'audio/midi', 'audio/x-midi', 'audio/mp4', 'audio/m4a', 'audio/x-m4a', 'audio/wav', 'audio/x-wav', 'video/3gpp', 'video/3gpp2', 'video/m4v', 'video/x-m4v', 'video/mp4', 'video/mpeg', 'video/x-mpeg', 'video/quicktime', 'video/sd-video'); // QuickTime
$types_wmedia = array('application/asx', 'application/x-mplayer2', 'audio/x-ms-wma', 'audio/x-ms-wax', 'video/x-ms-asf-plugin', 'video/x-ms-asf', 'video/x-ms-wm', 'video/x-ms-wmv', 'video/x-ms-wvx'); // Windows Media
$types_mp3 = array('audio/mp3', 'audio/x-mp3', 'audio/mpeg', 'audio/x-mpeg'); // MP3
if ($this->get_type() !== null)
{
$type = strtolower($this->type);
}
else
{
$type = null;
}
// If we encounter an unsupported mime-type, check the file extension and guess intelligently.
if (!in_array($type, array_merge($types_flash, $types_fmedia, $types_quicktime, $types_wmedia, $types_mp3)))
{
switch (strtolower($this->get_extension()))
{
// Audio mime-types
case 'aac':
case 'adts':
$type = 'audio/acc';
break;
case 'aif':
case 'aifc':
case 'aiff':
case 'cdda':
$type = 'audio/aiff';
break;
case 'bwf':
$type = 'audio/wav';
break;
case 'kar':
case 'mid':
case 'midi':
case 'smf':
$type = 'audio/midi';
break;
case 'm4a':
$type = 'audio/x-m4a';
break;
case 'mp3':
case 'swa':
$type = 'audio/mp3';
break;
case 'wav':
$type = 'audio/wav';
break;
case 'wax':
$type = 'audio/x-ms-wax';
break;
case 'wma':
$type = 'audio/x-ms-wma';
break;
// Video mime-types
case '3gp':
case '3gpp':
$type = 'video/3gpp';
break;
case '3g2':
case '3gp2':
$type = 'video/3gpp2';
break;
case 'asf':
$type = 'video/x-ms-asf';
break;
case 'flv':
$type = 'video/x-flv';
break;
case 'm1a':
case 'm1s':
case 'm1v':
case 'm15':
case 'm75':
case 'mp2':
case 'mpa':
case 'mpeg':
case 'mpg':
case 'mpm':
case 'mpv':
$type = 'video/mpeg';
break;
case 'm4v':
$type = 'video/x-m4v';
break;
case 'mov':
case 'qt':
$type = 'video/quicktime';
break;
case 'mp4':
case 'mpg4':
$type = 'video/mp4';
break;
case 'sdv':
$type = 'video/sd-video';
break;
case 'wm':
$type = 'video/x-ms-wm';
break;
case 'wmv':
$type = 'video/x-ms-wmv';
break;
case 'wvx':
$type = 'video/x-ms-wvx';
break;
// Flash mime-types
case 'spl':
$type = 'application/futuresplash';
break;
case 'swf':
$type = 'application/x-shockwave-flash';
break;
}
}
if ($find_handler)
{
if (in_array($type, $types_flash))
{
return 'flash';
}
elseif (in_array($type, $types_fmedia))
{
return 'fmedia';
}
elseif (in_array($type, $types_quicktime))
{
return 'quicktime';
}
elseif (in_array($type, $types_wmedia))
{
return 'wmedia';
}
elseif (in_array($type, $types_mp3))
{
return 'mp3';
}
else
{
return null;
}
}
else
{
return $type;
}
}

+ Voici le graphe d'appel pour cette fonction :

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_restriction (   $key = 0)

Définition à la ligne 6800 du fichier simplepie.php.

Références $restrictions, et get_restrictions().

{
if (isset($restrictions[$key]))
{
return $restrictions[$key];
}
else
{
return null;
}
}

+ Voici le graphe d'appel pour cette fonction :

SimplePie_Enclosure::get_restrictions ( )

Définition à la ligne 6813 du fichier simplepie.php.

Références $restrictions.

Référencé par get_restriction().

{
if ($this->restrictions !== null)
{
}
else
{
return null;
}
}

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_sampling_rate ( )

Définition à la ligne 6825 du fichier simplepie.php.

Références $samplingrate.

{
if ($this->samplingrate !== null)
{
}
else
{
return null;
}
}
SimplePie_Enclosure::get_size ( )

Définition à la ligne 6837 du fichier simplepie.php.

Références $length, et get_length().

{
$length = $this->get_length();
if ($length !== null)
{
return round($length/1048576, 2);
}
else
{
return null;
}
}

+ Voici le graphe d'appel pour cette fonction :

SimplePie_Enclosure::get_thumbnail (   $key = 0)

Définition à la ligne 6850 du fichier simplepie.php.

Références $thumbnails, et get_thumbnails().

{
if (isset($thumbnails[$key]))
{
return $thumbnails[$key];
}
else
{
return null;
}
}

+ Voici le graphe d'appel pour cette fonction :

SimplePie_Enclosure::get_thumbnails ( )

Définition à la ligne 6863 du fichier simplepie.php.

Références $thumbnails.

Référencé par get_thumbnail().

{
if ($this->thumbnails !== null)
{
}
else
{
return null;
}
}

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_title ( )

Définition à la ligne 6875 du fichier simplepie.php.

Références $title.

{
if ($this->title !== null)
{
return $this->title;
}
else
{
return null;
}
}
SimplePie_Enclosure::get_type ( )

Définition à la ligne 6887 du fichier simplepie.php.

Références $type.

Référencé par get_real_type().

{
if ($this->type !== null)
{
return $this->type;
}
else
{
return null;
}
}

+ Voici le graphe des appelants de cette fonction :

SimplePie_Enclosure::get_width ( )

Définition à la ligne 6899 du fichier simplepie.php.

Références $width.

{
if ($this->width !== null)
{
return $this->width;
}
else
{
return null;
}
}
SimplePie_Enclosure::native_embed (   $options = '')

Définition à la ligne 6911 du fichier simplepie.php.

Références embed().

{
return $this->embed($options, true);
}

+ Voici le graphe d'appel pour cette fonction :

SimplePie_Enclosure::SimplePie_Enclosure (   $link = null,
  $type = null,
  $length = null,
  $javascript = null,
  $bitrate = null,
  $captions = null,
  $categories = null,
  $channels = null,
  $copyright = null,
  $credits = null,
  $description = null,
  $duration = null,
  $expression = null,
  $framerate = null,
  $hashes = null,
  $height = null,
  $keywords = null,
  $lang = null,
  $medium = null,
  $player = null,
  $ratings = null,
  $restrictions = null,
  $samplingrate = null,
  $thumbnails = null,
  $title = null,
  $width = null 
)

Définition à la ligne 6425 du fichier simplepie.php.

Références $bitrate, $captions, $categories, $channels, $copyright, $credits, $description, $duration, $expression, $framerate, $hashes, $height, $javascript, $keywords, $lang, $length, $link, $medium, $player, $ratings, $restrictions, $samplingrate, $thumbnails, $title, $type, $width, SimplePie_Misc\compress_parse_url(), get_handler(), et SimplePie_Misc\parse_url().

{
$this->bitrate = $bitrate;
$this->captions = $captions;
$this->categories = $categories;
$this->channels = $channels;
$this->copyright = $copyright;
$this->credits = $credits;
$this->description = $description;
$this->duration = $duration;
$this->expression = $expression;
$this->framerate = $framerate;
$this->hashes = $hashes;
$this->height = $height;
$this->javascript = $javascript;
$this->keywords = $keywords;
$this->lang = $lang;
$this->length = $length;
$this->link = $link;
$this->medium = $medium;
$this->player = $player;
$this->ratings = $ratings;
$this->restrictions = $restrictions;
$this->samplingrate = $samplingrate;
$this->thumbnails = $thumbnails;
$this->title = $title;
$this->type = $type;
$this->width = $width;
if (class_exists('idna_convert'))
{
$idn = new idna_convert;
$this->link = SimplePie_Misc::compress_parse_url($parsed['scheme'], $idn->encode($parsed['authority']), $parsed['path'], $parsed['query'], $parsed['fragment']);
}
$this->handler = $this->get_handler(); // Needs to load last
}

+ Voici le graphe d'appel pour cette fonction :


Documentation des données membres

SimplePie_Enclosure::$bitrate

Définition à la ligne 6396 du fichier simplepie.php.

Référencé par get_bitrate(), et SimplePie_Enclosure().

SimplePie_Enclosure::$captions

Définition à la ligne 6397 du fichier simplepie.php.

Référencé par get_caption(), get_captions(), et SimplePie_Enclosure().

SimplePie_Enclosure::$categories

Définition à la ligne 6398 du fichier simplepie.php.

Référencé par get_categories(), get_category(), et SimplePie_Enclosure().

SimplePie_Enclosure::$channels

Définition à la ligne 6399 du fichier simplepie.php.

Référencé par get_channels(), et SimplePie_Enclosure().

SimplePie_Enclosure::$copyright

Définition à la ligne 6400 du fichier simplepie.php.

Référencé par get_copyright(), et SimplePie_Enclosure().

SimplePie_Enclosure::$credits

Définition à la ligne 6401 du fichier simplepie.php.

Référencé par get_credit(), get_credits(), et SimplePie_Enclosure().

SimplePie_Enclosure::$description

Définition à la ligne 6402 du fichier simplepie.php.

Référencé par get_description(), et SimplePie_Enclosure().

SimplePie_Enclosure::$duration

Définition à la ligne 6403 du fichier simplepie.php.

Référencé par get_duration(), et SimplePie_Enclosure().

SimplePie_Enclosure::$expression

Définition à la ligne 6404 du fichier simplepie.php.

Référencé par get_expression(), et SimplePie_Enclosure().

SimplePie_Enclosure::$framerate

Définition à la ligne 6405 du fichier simplepie.php.

Référencé par get_framerate(), et SimplePie_Enclosure().

SimplePie_Enclosure::$handler

Définition à la ligne 6406 du fichier simplepie.php.

Référencé par embed().

SimplePie_Enclosure::$hashes

Définition à la ligne 6407 du fichier simplepie.php.

Référencé par get_hash(), get_hashes(), et SimplePie_Enclosure().

SimplePie_Enclosure::$height

Définition à la ligne 6408 du fichier simplepie.php.

Référencé par embed(), get_height(), et SimplePie_Enclosure().

SimplePie_Enclosure::$javascript

Définition à la ligne 6409 du fichier simplepie.php.

Référencé par SimplePie_Enclosure().

SimplePie_Enclosure::$keywords

Définition à la ligne 6410 du fichier simplepie.php.

Référencé par get_keyword(), get_keywords(), et SimplePie_Enclosure().

SimplePie_Enclosure::$lang

Définition à la ligne 6411 du fichier simplepie.php.

Référencé par get_language(), et SimplePie_Enclosure().

SimplePie_Enclosure::$length

Définition à la ligne 6412 du fichier simplepie.php.

Référencé par get_length(), get_size(), et SimplePie_Enclosure().

SimplePie_Enclosure::$link

Définition à la ligne 6413 du fichier simplepie.php.

Référencé par SimplePie_Enclosure().

SimplePie_Enclosure::$medium

Définition à la ligne 6414 du fichier simplepie.php.

Référencé par get_medium(), et SimplePie_Enclosure().

SimplePie_Enclosure::$player

Définition à la ligne 6415 du fichier simplepie.php.

Référencé par get_player(), et SimplePie_Enclosure().

SimplePie_Enclosure::$ratings

Définition à la ligne 6416 du fichier simplepie.php.

Référencé par get_rating(), get_ratings(), et SimplePie_Enclosure().

SimplePie_Enclosure::$restrictions

Définition à la ligne 6417 du fichier simplepie.php.

Référencé par get_restriction(), get_restrictions(), et SimplePie_Enclosure().

SimplePie_Enclosure::$samplingrate

Définition à la ligne 6418 du fichier simplepie.php.

Référencé par get_sampling_rate(), et SimplePie_Enclosure().

SimplePie_Enclosure::$thumbnails

Définition à la ligne 6419 du fichier simplepie.php.

Référencé par get_thumbnail(), get_thumbnails(), et SimplePie_Enclosure().

SimplePie_Enclosure::$title

Définition à la ligne 6420 du fichier simplepie.php.

Référencé par get_title(), et SimplePie_Enclosure().

SimplePie_Enclosure::$type

Définition à la ligne 6421 du fichier simplepie.php.

Référencé par embed(), get_real_type(), get_type(), et SimplePie_Enclosure().

SimplePie_Enclosure::$width

Définition à la ligne 6422 du fichier simplepie.php.

Référencé par embed(), get_width(), et SimplePie_Enclosure().


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