BUG - Profile Avatar Looks Terrible
Using Jamroom
April 2nd is the day Google+ gets shut down. I can understand why they did not choose April 1st.
I got an email telling me. (screenshot)
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);
.....
fdebug($_data)$_data['profile_id']
$_debug = array(
'WHAT' => 'Im trying to figure out what i have in this location',
'$_data' => $_data,
);
fdebug($_debug);