i'm trying to create the helloworld plugin
what am i doing wrong?
JInstaller: :Install: il file non esiste C:\xampp\htdocs\SITO\tmp\install_537c828774c79\plg_community_fans
Hi, Alfredo.
I'm sorry but we don't support extension development.
Please, ask developer for help:
www.jomsocial.com/jomsocial-developers
it's ok, i got it by myself.
following this guide
documentation.jomsocial.com/wiki/Plugin_Tutorials
i still have a problem: i don't get why i set Core Application=no, i see the plugin in the list, but i can't see the title and the text "hello world", i guess i have to do something in backend or what?
basically i dont see at all the plugin in profile page
Hi, Alfreado.
As JomSocial works on Joomla! framework it falls under the same rule of plugin creation as any other plugin ;)
Please ask in Joomla! forum:
forum.joomla.org/
Michal wrote: Hi, Alfreado.
As JomSocial works on Joomla! framework it falls under the same rule of plugin creation as any other plugin ;)
Please ask in Joomla! forum: forum.joomla.org/
defined('_JEXEC') or die('Restricted access');
require_once JPATH_ROOT .'/components/com_community/libraries/core.php';
class plgCommunityExample extends CApplications
{
var $name = "Example";
var $_name = 'example';
function plgCommunityExample(& $subject, $config)
{
parent::__construct($subject, $config);
}
function onProfileDisplay()
{
ob_start();
echo 'Hello World';
$content = ob_get_contents();
ob_end_clean();
return $content;
}
}
Hi, Alfredo.
I repeat: we don't support plugin creation:
www.jomsocial.com/support
Please don't insist...
Michal wrote: Hi, Alfredo.
I repeat: we don't support plugin creation: www.jomsocial.com/support
Please don't insist...