How to change the code so that text "I am a happy plugin" appears only in the archived items?.
This is the PHP code:
<?php
// No direct access allowed to this file
defined( '_JEXEC' ) or die( 'Restricted access' );
// Import Joomla! Plugin library file
jimport('joomla.plugin.plugin开发者_StackOverflow');
//The Content plugin MakePlugIn
class plgContentMakePlugIn extends JPlugin
{
function plgContentMakePlugIn (&$subject)
{
parent::__construct ($subject);
}
function onPrepareContent (&$article, &$params, $page=0)
{
print "I am a happy plugin";
}
}
?>
Looks like this is what you are looking for:
function onPrepareContent (&$article, &$params, $page=0)
{
if ($article->state==-1) {
print "I am a happy plugin";
}
}
精彩评论