Back to PluginAdapter class

Method parseOptionalTags

protected void
parseOptionalTags
()
Method to parse optional tags in the manifest
Returns
  • void
Since
  • 3.4
Class: PluginAdapter
Project: Joomla

Method parseOptionalTags - Source code

/**
 * Method to parse optional tags in the manifest
 *
 * @return  void
 *
 * @since   3.4
 */
protected function parseOptionalTags()
{
    // Parse optional tags -- media and language files for plugins go in admin app
    $this->parent->parseMedia($this->getManifest()->media, 1);
    $this->parent->parseLanguages($this->getManifest()->languages, 1);
}
OSZAR »