Created
November 14, 2017 13:50
-
-
Save jefferythewind/f31ba44cb0e18b4b34081257c411e17d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// no direct access | |
defined('_JEXEC') or die; | |
class plgContentHelloworld extends JPlugin | |
{ | |
public function onContentAfterTitle($context, &$article, &$params, $limitstart) | |
{ | |
return "<p>Hello World!</p>"; | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment