Server: appserver-7f0f8755-nginx-15961cad18524ec5a9db05f2a6a7e440
Current directory: /code/wp-includes/SimplePie
Software: nginx/1.27.5
Shell Command
Create a new file
Upload file
File: Caption.php
` captions as defined in Media RSS. * * Used by {@see SimplePie_Enclosure::get_caption()} and {@see SimplePie_Enclosure::get_captions()} * * This class can be overloaded with {@see SimplePie::set_caption_class()} * * @package SimplePie * @subpackage API */ class SimplePie_Caption { /** * Content type * * @var string * @see get_type() */ var $type; /** * Language * * @var string * @see get_language() */ var $lang; /** * Start time * * @var string * @see get_starttime() */ var $startTime; /** * End time * * @var string * @see get_endtime() */ var $endTime; /** * Caption text * * @var string * @see get_text() */ var $text; /** * Constructor, used to input the data * * For documentation on all the parameters, see the corresponding * properties and their accessors */ public function __construct($type = null, $lang = null, $startTime = null, $endTime = null, $text = null) { $this->type = $type; $this->lang = $lang; $this->startTime = $startTime; $this->endTime = $endTime; $this->text = $text; } /** * String-ified version * * @return string */ public function __toString() { // There is no $this->data here return md5(serialize($this)); } /** * Get the end time * * @return string|null Time in the format 'hh:mm:ss.SSS' */ public function get_endtime() { if ($this->endTime !== null) { return $this->endTime; } return null; } /** * Get the language * * @link http://tools.ietf.org/html/rfc3066 * @return string|null Language code as per RFC 3066 */ public function get_language() { if ($this->lang !== null) { return $this->lang; } return null; } /** * Get the start time * * @return string|null Time in the format 'hh:mm:ss.SSS' */ public function get_starttime() { if ($this->startTime !== null) { return $this->startTime; } return null; } /** * Get the text of the caption * * @return string|null */ public function get_text() { if ($this->text !== null) { return $this->text; } return null; } /** * Get the content type (not MIME type) * * @return string|null Either 'text' or 'html' */ public function get_type() { if ($this->type !== null) { return $this->type; } return null; } }
.
28 Items
Change directory
Remove directory
Rename directory
..
270 Items
Change directory
Remove directory
Rename directory
Author.php
3.43 KB
Edit
Delete
Copy
Move
Remame
Cache
7 Items
Change directory
Remove directory
Rename directory
Cache.php
4.25 KB
Edit
Delete
Copy
Move
Remame
Caption.php
4.3 KB
Edit
Delete
Copy
Move
Remame
Category.php
3.85 KB
Edit
Delete
Copy
Move
Remame
Content
1 Items
Change directory
Remove directory
Rename directory
Copyright.php
3.23 KB
Edit
Delete
Copy
Move
Remame
Core.php
2.18 KB
Edit
Delete
Copy
Move
Remame
Credit.php
3.56 KB
Edit
Delete
Copy
Move
Remame
Decode
1 Items
Change directory
Remove directory
Rename directory
Enclosure.php
26.34 KB
Edit
Delete
Copy
Move
Remame
Exception.php
2.1 KB
Edit
Delete
Copy
Move
Remame
File.php
9.92 KB
Edit
Delete
Copy
Move
Remame
HTTP
1 Items
Change directory
Remove directory
Rename directory
IRI.php
28.02 KB
Edit
Delete
Copy
Move
Remame
Item.php
96.82 KB
Edit
Delete
Copy
Move
Remame
Locator.php
12.89 KB
Edit
Delete
Copy
Move
Remame
Misc.php
51.26 KB
Edit
Delete
Copy
Move
Remame
Net
1 Items
Change directory
Remove directory
Rename directory
Parse
1 Items
Change directory
Remove directory
Rename directory
Parser.php
28.34 KB
Edit
Delete
Copy
Move
Remame
Rating.php
3.31 KB
Edit
Delete
Copy
Move
Remame
Registry.php
5.88 KB
Edit
Delete
Copy
Move
Remame
Restriction.php
3.63 KB
Edit
Delete
Copy
Move
Remame
Sanitize.php
17.61 KB
Edit
Delete
Copy
Move
Remame
Source.php
19.79 KB
Edit
Delete
Copy
Move
Remame
XML
1 Items
Change directory
Remove directory
Rename directory
gzdecode.php
8.31 KB
Edit
Delete
Copy
Move
Remame