Hi Guys,
I'm uploading a Joomla Plugin DX Seblod Tools that you can download at http://joomla.doxadigital.com/dxseblodtools_100.zip
The function of this plugin is to help Seblod Developer and Integrator to load data for any content type anywhere..
Requirement:
Dev that already able to use work with Seblod Template, this plugin does not print/echo any output
The Usage:
$config=array(
view=>'content',
id=>'1',
fields=>array('art_title','art_introtext',....)
);
$data=PlgSystemDxseblodtools::load($config);
Parameter:
view: can be set to 'content' or 'intro' , it depend on which view's field you want to load
id: is the article/content id... technically, it is the id field on #__content
fields (optional): set the field you want to retrieve... no fields defined, it return all the fields by default -updated 27/06/2013- Thanks to Simon
Result:
the associative array will be return, you can test it using var_dump();
Donation:
Appreciate for those who willing to donate to my paypalID victor@doxadigital.com
To Do List/Limitation:
- Not Render FieldX/GroupX yet (waiting for my test case)
- Not Render with Seblod Typo Plugin... all you got is the raw data (but you can make a lot of fun with it)
PS: This plugin is always on going development, i'll add more function than only load content type
So, i'm waiting for the feedback, improvement, suggestion, and critics...
CHANGELOG
27 June 2013 - Simon gives idea to select only few fields
....