Running Joomla content plugins in your custom components
Here's a little tipbit I added to Fabrik today to allow your custom components to access Joomla's content plugins[EDIT] The original post is at the bottom now, however I have just found a cleaner way of doing what I originaly posted:$text = JHTML::_('content.prepare', $text );[/EDIT]In you view (e.g. components/com_mycomponent/views/myview/view.html.php) Your display() method usually ends with this: parent::display();This loads the template and echo's it out, however it doesn't run Joomla's…See More
