J1.5

Difference between revisions of "Plugin/Events/Content"

From Joomla! Documentation

< J1.5:Plugin/Events
m
Line 4: Line 4:
 
===5.5.1 Overview===
 
===5.5.1 Overview===
 
Content events are triggered during the content creation process. This may occur  
 
Content events are triggered during the content creation process. This may occur  
in views in the com_content component, or in other components or modules.
+
in views in the com_content component, or in other components or modules.  
 +
 
 +
Note: This article does not yet describe the events onBeforeContentSave and onAfterContentSave that were added in [http://www.joomla.org/content/view/5180/1/1/1/#Content_Trigger_Additions Joomla 1.5.4]
  
 
===5.5.2 onBeforeDisplay===
 
===5.5.2 onBeforeDisplay===

Revision as of 07:38, 31 July 2008

The "J1.5" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

5.5 Content Events for Plugin System[edit]

5.5.1 Overview[edit]

Content events are triggered during the content creation process. This may occur in views in the com_content component, or in other components or modules.

Note: This article does not yet describe the events onBeforeContentSave and onAfterContentSave that were added in Joomla 1.5.4

5.5.2 onBeforeDisplay[edit]

5.5.2.1 Description[edit]

This event is triggered when the framework is ready to create content. When this event triggers, all features that can affect the presentation format are loaded.

5.5.2.2 Parameters[edit]

None.

5.5.2.3 Return Value[edit]

None.

5.5.2.4 Used in files[edit]

 *index.php
 *administrator/index.php
 *components/com_content/views/article/view.html.php
 *components/com_content/views/category/view.html.php
 *components/com_content/views/frontpage/view.html.php
 *components/com_content/views/section/view.html.php
 *modules/mod_newsflash/helper.php
 *plugins/content/pagenavigation.php
 *plugins/content/vote.php

5.5.3 onAfterDisplay[edit]

5.5.3.1 Description[edit]

This event is triggered when the framework has finished creating content.

5.5.3.2 Parameters[edit]

None.

5.5.3.3 Return Value[edit]

None.

5.5.3.4 Used in files[edit]

 *index.php
 *administrator/index.php
 *components/com_content/views/article/view.html.php
 *components/com_content/views/category/view.html.php
 *components/com_content/views/frontpage/view.html.php
 *components/com_content/views/section/view.html.php
 *modules/mod_newsflash/helper.php
 

5.5.4 onPrepareContent[edit]

5.5.4.1 Description[edit]

This is the first stage in preparing content for output and is the most common point for content orientated plugins to do their work. Since the article and related parameters are passed by reference, event handlers can modify them prior to display.

5.5.4.2 Parameters[edit]

 *article A reference to the article that is being rendered by the view.
 *params A reference to an associative array of relevant parameters. The view determines what it considers to be relevant and passes that information along.
 *limitstart An integer that determines the "page" of the content that is to be generated. Note that in the context of views that might not generate HTML output, a page is a reasonably abstract concept that depends on the context.

5.5.4.3 Return Value[edit]

None. Results are returned by modifying the referenced arguments.

5.5.4.4 Used in files[edit]

 *components/com_content/views/article/view.html.php
 *components/com_content/views/article/view.pdf.php
 *components/com_content/views/category/view.html.php
 *components/com_content/views/frontpage/view.html.php
 *components/com_content/views/section/view.html.php
 *plugins/content/code.php
 *plugins/content/emailcloak.php
 *plugins/content/geshi.php
 *plugins/content/image.php
 *plugins/content/loadmodule.php
 *plugins/content/pagebreak.php
 *plugins/content/sef.php

5.5.5 onAfterDisplayTitle[edit]

5.5.5.1 Description[edit]

This is a request for information that should be placed between the content title and the content body.

5.5.5.2 Parameters[edit]

See the onPrepareContent event for additional discussion of these parameters. Note that unlike onPrepareContent, these parameters are passed by value.

 *article The article that is being rendered by the view.
 *params An associative array of relevant parameters.
 *limitstart An integer that determines the "page" of the content that is to be generated.

5.5.5.3 Return Value[edit]

An array. In XHTML/HTML views, this is is an array of strings, each of which becomes a line in the output stream.

5.5.5.4 Used in files[edit]

 *components/com_content/views/article/view.html.php
 *components/com_content/views/category/view.html.php
 *components/com_content/views/frontpage/view.html.php
 *components/com_content/views/section/view.html.php
 *modules/mod_newsflash/helper.php

5.5.5.5 See Also[edit]

 *components/com_content/views/article/tmpl/default.php

5.5.6 onBeforeDisplayContent[edit]

5.5.6.1 Description[edit]

This is a request for information that should be placed immediately before the generated content. For views that generate XHTML/HTML, this might include the use of styles that are specified as part of the content or related parameters.

5.5.6.2 Parameters[edit]

See the onPrepareContent event for additional discussion of these parameters. Note that unlike onPrepareContent, these parameters are passed by value.

 *article The article that is being rendered by the view.
 *params An associative array of relevant parameters.
 *limitstart An integer that determines the "page" of the content that is to be generated.

5.5.6.3 Return Value[edit]

An array. In XHTML/HTML views, this is is an array of strings, each of which becomes a line in the output stream.

5.5.6.4 Used in files[edit]

 *components/com_content/views/article/view.html.php
 *components/com_content/views/category/view.html.php
 *components/com_content/views/frontpage/view.html.php
 *components/com_content/views/section/view.html.php
 *modules/mod_newsflash/helper.php

5.5.6.5 See Also[edit]

 *components/com_content/views/article/tmpl/default.php

5.5.7 onAfterDisplayContent[edit]

5.5.7.1 Description[edit]

This is a request for information that should be placed immediately after the generated content. For views that generate XHTML/HTML, this might include the closure of styles that are specified as part of the content or related parameters.

5.5.7.2 Parameters[edit]

See the onPrepareContent event for additional discussion of these parameters. Note that unlike onPrepareContent, these parameters are passed by value.

 *article The article that is being rendered by the view.
 *params An associative array of relevant parameters.
 *limitstart An integer that determines the "page" of the content that is to be generated.

5.5.7.3 Return Value[edit]

An array. In XHTML/HTML views, this is is an array of strings, each of which becomes a line in the output stream.

5.5.7.4 Used in files[edit]

 *components/com_content/views/article/view.html.php
 *components/com_content/views/category/view.html.php
 *components/com_content/views/frontpage/view.html.php
 *components/com_content/views/section/view.html.php

5.5.7.5 See Also[edit]

 *components/com_content/views/article/tmpl/default.php