It looks like you're new here. If you want to get involved, click one of these buttons!
$fields['csv_import'] = array(
'type' => 'file',
'overwrite' => false,
'accept' => 'csv|txt|xls',
'order' => 1000,
'label' => 'CSV Import',
'upload_path' => TRAVEL_PORTAL_PATH.'assets/data/',
'overwrite' => TRUE //TODO: Check if file already exists
//'filename' => */
);
function on_before_validate($values)
{
$saved_data = $this->normalized_save_data;
$this->add_validation('csv_import', 'is_equal_to', 'Yehaaa!', array('no test', 'test'));
return $values;
}
function on_before_validate($values)
{
$saved_data = $this->normalized_save_data;
$this->add_validation('title', 'is_equal_to', 'Yehaaa!', array('no test', 'test'));
return $values;
}