You are here

class Source in Zircon Profile 8.0

Same name in this branch
  1. 8.0 vendor/zendframework/zend-feed/src/Writer/Source.php \Zend\Feed\Writer\Source
  2. 8.0 vendor/zendframework/zend-feed/src/Reader/Feed/Atom/Source.php \Zend\Feed\Reader\Feed\Atom\Source
  3. 8.0 vendor/zendframework/zend-feed/src/Writer/Renderer/Feed/Atom/Source.php \Zend\Feed\Writer\Renderer\Feed\Atom\Source
Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-feed/src/Writer/Source.php \Zend\Feed\Writer\Source

Hierarchy

Expanded class hierarchy of Source

8 string references to 'Source'
aggregator.schema.yml in core/modules/aggregator/config/schema/aggregator.schema.yml
core/modules/aggregator/config/schema/aggregator.schema.yml
CKEditor::getDefaultSettings in core/modules/ckeditor/src/Plugin/Editor/CKEditor.php
Returns the default settings for this configurable text editor.
CKEditorAdminTest::testExistingFormat in core/modules/ckeditor/src/Tests/CKEditorAdminTest.php
Tests configuring a text editor for an existing text format.
CKEditorTest::getDefaultToolbarConfig in core/modules/ckeditor/src/Tests/CKEditorTest.php
editor.editor.basic_html.yml in core/profiles/standard/config/install/editor.editor.basic_html.yml
core/profiles/standard/config/install/editor.editor.basic_html.yml

... See full list

File

vendor/zendframework/zend-feed/src/Writer/Source.php, line 14

Namespace

Zend\Feed\Writer
View source
class Source extends AbstractFeed {

}

Members

Namesort descending Modifiers Type Description Overrides
AbstractFeed::$data protected property Contains all Feed level date to append in feed output
AbstractFeed::$extensions protected property
AbstractFeed::$type protected property Holds the value "atom" or "rss" depending on the feed type set when when last exported.
AbstractFeed::addAuthor public function Set a single author
AbstractFeed::addAuthors public function Set an array with feed authors
AbstractFeed::addCategories public function Set an array of feed categories
AbstractFeed::addCategory public function Add a feed category
AbstractFeed::addHub public function Add a Pubsubhubbub hub endpoint URL
AbstractFeed::addHubs public function Add Pubsubhubbub hub endpoint URLs
AbstractFeed::getAuthor public function Get a single author
AbstractFeed::getAuthors public function Get an array with feed authors
AbstractFeed::getBaseUrl public function Get the feed's base url
AbstractFeed::getCategories public function Get the feed categories
AbstractFeed::getCopyright public function Get the copyright entry
AbstractFeed::getDateCreated public function Get the feed creation date
AbstractFeed::getDateModified public function Get the feed modification date
AbstractFeed::getDescription public function Get the feed description
AbstractFeed::getEncoding public function Get the feed character encoding
AbstractFeed::getFeedLinks public function Get a link to the XML feed
AbstractFeed::getGenerator public function Get the feed generator entry
AbstractFeed::getHubs public function Get the URLs used as Pubsubhubbub hubs endpoints
AbstractFeed::getId public function Get the feed ID
AbstractFeed::getImage public function Get the feed image URI
AbstractFeed::getLanguage public function Get the feed language
AbstractFeed::getLastBuildDate public function Get the feed last-build date
AbstractFeed::getLink public function Get a link to the HTML source
AbstractFeed::getTitle public function Get the feed title
AbstractFeed::getType public function Retrieve the current or last feed type exported.
AbstractFeed::remove public function Unset a specific data point
AbstractFeed::reset public function Resets the instance and deletes all data
AbstractFeed::setBaseUrl public function Set the feed's base URL
AbstractFeed::setCopyright public function Set the copyright entry
AbstractFeed::setDateCreated public function Set the feed creation date
AbstractFeed::setDateModified public function Set the feed modification date
AbstractFeed::setDescription public function Set the feed description
AbstractFeed::setEncoding public function Set the feed character encoding
AbstractFeed::setFeedLink public function Set a link to an XML feed for any feed type/version
AbstractFeed::setGenerator public function Set the feed generator entry
AbstractFeed::setId public function Set the feed ID - URI or URN (via PCRE pattern) supported
AbstractFeed::setImage public function Set a feed image (URI at minimum). Parameter is a single array with the required key 'uri'. When rendering as RSS, the required keys are 'uri', 'title' and 'link'. RSS also specifies three optional parameters…
AbstractFeed::setLanguage public function Set the feed language
AbstractFeed::setLastBuildDate public function Set the feed last-build date. Ignored for Atom 1.0.
AbstractFeed::setLink public function Set a link to the HTML source
AbstractFeed::setTitle public function Set the feed title
AbstractFeed::setType public function Set the current feed type being exported to "rss" or "atom". This allows other objects to gracefully choose whether to execute or not, depending on their appropriateness for the current type, e.g. renderers.
AbstractFeed::_loadExtensions protected function Load extensions from Zend\Feed\Writer\Writer
AbstractFeed::_validateTagUri protected function Validate a URI using the tag scheme (RFC 4151)
AbstractFeed::__call public function Method overloading: call given method on first extension implementing it
AbstractFeed::__construct public function Constructor: Primarily triggers the registration of core extensions and loads those appropriate to this data container.