not sure where to increase Group Discuss font size
Using Jamroom
Well done!
Accusamus sit occaecati sit et pariatur provident. Odit consequatur provident magnam quam. Accusantium adipisci at autem. Et assumenda non ea illum et et eos sint. Vitae dolorem quia odio provident consequatur. Cum nesciunt similique omnis temporibus praesentium consequatur exercitationem. Consequatur odio excepturi delectus ex ea aut est enim.
Get all posted data that can be saved to the Data Store for a module
* @param string $module Module that has registered a designer form view
* @param string $view View to get form fields for
* @param array $_data $_REQUEST data to parse (default is $_post)
* @return mixed
*/
jrCore_db_create_datastore('myCustomModule', 'report');
// report_id
$_tmp = array(
'name' => 'report_id',
'type' => 'hidden',
'value' => $_report['_item_id']
);
jrCore_form_field_create($_tmp);
// Report body
$_tmp = array(
'name' => 'report_body',
'label' => 'Report',
'help' => 'Enter any report body into this area',
'type' => 'textarea',
'validate' => 'printable',
'required' => true
);
jrCore_form_field_create($_tmp);
.....