0 id must match with id of current user $form["auth_preset"]["groupid"] = 0; // 0 = default groupid of the user, > 0 id must match with groupid of current user $form["auth_preset"]["perm_user"] = 'riud'; //r = read, i = insert, u = update, d = delete $form["auth_preset"]["perm_group"] = 'riud'; //r = read, i = insert, u = update, d = delete $form["auth_preset"]["perm_other"] = ''; //r = read, i = insert, u = update, d = delete $form["tabs"]['settings'] = array ( 'title' => "Settings", 'width' => 100, 'template' => "templates/invoice_settings.htm", 'fields' => array ( ################################## # Begin Datatable fields ################################## 'currency' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', 'default' => '', 'value' => '', 'separator' => '', 'width' => '30', 'maxlength' => '255', 'rows' => '', 'cols' => '' ), 'invoice_dir' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', 'default' => '', 'value' => '', 'separator' => '', 'width' => '30', 'maxlength' => '255', 'rows' => '', 'cols' => '' ), 'revnum' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', 'default' => '', 'value' => '', 'separator' => '', 'width' => '30', 'maxlength' => '255', 'rows' => '', 'cols' => '' ), 'invoice_item_list_with_vat' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'CHECKBOX', 'default' => 'n', 'value' => array(1 => 'y',0 => 'n') ), ################################## # END Datatable fields ################################## ) ); $form["tabs"]['gateways'] = array ( 'title' => "Payment gateways", 'width' => 100, 'template' => "templates/invoice_settings_payment_gateway.htm", 'fields' => array ( ################################## # Begin Datatable fields ################################## 'invoice_pay_link' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', 'default' => '', 'value' => '', 'separator' => '', 'width' => '30', 'maxlength' => '255', 'rows' => '', 'cols' => '' ), 'paypal_business' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', 'default' => '', 'value' => '', 'separator' => '', 'width' => '30', 'maxlength' => '255', 'rows' => '', 'cols' => '' ), 'paypal_url' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', 'default' => 'https://www.paypal.com/cgi-bin/webscr', 'value' => '', 'separator' => '', 'width' => '30', 'maxlength' => '255', 'rows' => '', 'cols' => '' ), 'paypal_ipn_url' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'TEXT', 'default' => 'https://www.paypal.com/cgi-bin/webscr', 'value' => '', 'separator' => '', 'width' => '30', 'maxlength' => '255', 'rows' => '', 'cols' => '' ), 'paypal_active' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'CHECKBOX', 'default' => 'n', 'value' => array(1 => 'y',0 => 'n') ), ################################## # END Datatable fields ################################## ) ); $form["tabs"]['recurring_invoices_cron'] = array ( 'title' => "Cron Settings for recurring invoices", 'width' => 100, 'template' => "templates/invoice_settings_recurring_invoices_cron.htm", 'fields' => array ( ################################## # Begin Datatable fields ################################## 'recurring_invoices_cron_active' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'CHECKBOX', 'default' => 'n', 'value' => array(0 => 'n',1 => 'y') ), 'recurring_invoices_cron_test' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'CHECKBOX', 'default' => 'n', 'value' => array(0 => 'n',1 => 'y') ), 'recurring_invoices_cron_finalize_invoices' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'CHECKBOX', 'default' => 'y', 'value' => array(0 => 'n',1 => 'y') ), 'recurring_invoices_cron_send_invoices' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'CHECKBOX', 'default' => 'y', 'value' => array(0 => 'n',1 => 'y') ), 'recurring_invoices_cron_email_template_id' => array ( 'datatype' => 'INTEGER', 'formtype' => 'SELECT', 'default' => '', 'datasource' => array ( 'type' => 'SQL', 'querystring' => "SELECT invoice_message_template_id, template_name FROM invoice_message_template WHERE template_type = 'invoice' AND {AUTHSQL} ORDER BY template_name", 'keyfield'=> 'invoice_message_template_id', 'valuefield'=> 'template_name' ), 'value' => '' ), 'recurring_invoices_cron_proforma_invoice' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'CHECKBOX', 'default' => 'n', 'value' => array(0 => 'n',1 => 'y') ), ################################## # END Datatable fields ################################## ) ); ?>