Note that there are some explanatory texts on larger screens.

plurals
  1. POHow do I create a simple joomla plugin?
    primarykey
    data
    text
    <p>I'm having a real problem unstanding somthing thats probably very easy about creating and using joomla plugins.</p> <p>Here is what I've done so far.</p> <p>I've created a sample joomla plugin using the following two files inside of a folder and named them all the same.</p> <p>I listed their contents below.</p> <p>The plugin installs correctly through the admin panel</p> <p>Then I enable it through plugin manager</p> <p>ok. all set to go.</p> <p>How do I use the plugin on an article once I've enabled the plugin?</p> <p>ZIP FOLDER: MakePlugIn FOLDER: MakePlugIn</p> <p>MakePlugIn.php - </p> <pre><code>&lt;?php // No direct access allowed to this file defined( '_JEXEC' ) or die( 'Restricted access' ); // Import Joomla! Plugin library file jimport('joomla.plugin.plugin'); //The Content plugin MakePlugIn class plgContentMakePlugIn extends JPlugin { function plgContentMakePlugIn (&amp;$subject) { parent::__construct ($subject); } function onPrepareContent (&amp;$article, &amp;$params, $page=0) { print "I am a happy plugin"; } } ?&gt; </code></pre> <p>MakePlugIn.xml -</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;install version="1.5" type="plugin" group="content"&gt; &lt;name&gt;Make-Plug-In&lt;/name&gt; &lt;author&gt;Make-Plug-In&lt;/author&gt; &lt;creationDate&gt;03/15/2011&lt;/creationDate&gt; &lt;copyright&gt;Copyright (C) 2011 Holder. All rights reserved.&lt;/copyright&gt; &lt;license&gt;GNU General Public License&lt;/license&gt; &lt;authorEmail&gt;authoremail@website.com&lt;/authorEmail&gt; &lt;authorUrl&gt;www.authorwebsite.com&lt;/authorUrl&gt; &lt;version&gt;1.0&lt;/version&gt; &lt;description&gt;Make-Plug-In test&lt;/description&gt; &lt;files&gt; &lt;filename plugin="MakePlugIn"&gt;MakePlugIn.php&lt;/filename&gt; &lt;/files&gt; &lt;/install&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload