X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=metaform.php;h=83df7a27f2e48a66ad67cdd4e07dae1bb7e27083;hb=332683184a73f7c141132c20c715cd731687f835;hp=a473bbca4a2eb5fff215e70c24fdc9bb6fa55af7;hpb=7add2ea3f61e40c5f0f5539ac6e02533c9390db4;p=wfpl.git diff --git a/metaform.php b/metaform.php index a473bbc..83df7a2 100644 --- a/metaform.php +++ b/metaform.php @@ -29,14 +29,18 @@ require_once('code/wfpl/format.php'); # see code/wfpl/metaform/template.html for the html templates for these elements $GLOBALS['types'] = array( # type input format sql + 'varname' => array('textbox', 'varname', 'varchar(50)'), 'name' => array('textbox', 'oneline', 'varchar(200)'), 'textbox' => array('textbox', 'oneline', 'varchar(200)'), 'int' => array('textbox', 'int', 'int'), + 'decimal' => array('textbox', 'decimal', 'decimal(12,12)'), 'bigint' => array('textbox', 'int', 'varchar(100)'), # up to 100 digits, stored as a string + 'zip' => array('textbox', 'zip', 'varchar(20)'), 'email' => array('textbox', 'email', 'varchar(100)'), 'phone' => array('textbox', 'phone', 'varchar(32)'), 'state' => array('states', 'oneline', 'varchar(2)'), 'money' => array('textbox', 'money', 'varchar(32)'), + 'date' => array('textbox', 'mdy_to_ymd', 'char(10)'), 'dollars' => array('textbox', 'dollars', 'varchar(32)'), 'url' => array('textbox', 'url', 'varchar(200)'), 'hidden' => array('hidden', 'unix', 'varchar(200)'), @@ -72,6 +76,8 @@ function metaform() { tem_set('opt_email', $GLOBALS['opt_email']); $GLOBALS['opt_db'] = format_yesno($_REQUEST['opt_db']); tem_set('opt_db', $GLOBALS['opt_db']); + $GLOBALS['opt_listing'] = format_yesno($_REQUEST['opt_listing']); + tem_set('opt_listing', $GLOBALS['opt_listing']); $GLOBALS['opt_http_pass'] = format_yesno($_REQUEST['opt_http_pass']); tem_set('opt_http_pass', $GLOBALS['opt_http_pass']); } else { @@ -166,6 +172,8 @@ function make_sql() { $tem->set('type', $sql); if($sql == 'int') { $tem->set('default', '0'); + } elseif($format == 'yesno') { + $tem->set('default', '"No"'); } else { $tem->set('default', '""'); } @@ -180,6 +188,19 @@ function view_sql() { view_headers(); echo make_sql(); } + +# always_field is a form field that always submits (unlike say, checkboxes). It's used to detect if the form has submitted or not. +function find_always_field($fields) { + foreach($fields as $field) { + list($name, $type, $input, $format, $sql) = $field; + if($input != 'submit' && $input != 'checkbox' && $input != 'radio') { + return $name; + } + } + + return false; +} + # pass false if you want to exclude the and tag etc. @@ -190,6 +211,7 @@ function make_html($whole_file = true) { $tem->load('code/wfpl/metaform/template.html'); $tem->set('form_name', $GLOBALS['form_name']); $fields = get_fields(); + $tem->set('always_field', find_always_field($fields)); foreach($fields as $field) { list($name, $type, $input, $format, $sql) = $field; $tem->set('name', $name); @@ -216,6 +238,12 @@ function make_html($whole_file = true) { $tem->sub('opt_db_1_else'); } + if($GLOBALS['opt_listing'] == 'Yes') { + $tem->sub('opt_listing_1'); + } else { + $tem->sub('opt_listing_1_else'); + } + if($GLOBALS['opt_email'] == 'Yes' && $GLOBALS['opt_db'] != 'Yes') { $tem->set('name', 'send'); $tem->set('caption', 'Send'); @@ -252,7 +280,7 @@ function make_php() { $fields = get_fields(); $db_fields = ''; $php_fields = ''; - $always_field = false; + $always_field = find_always_field($fields); $image_included_yet = false; foreach($fields as $field) { list($name, $type, $input, $format, $sql) = $field; @@ -283,16 +311,22 @@ function make_php() { $tem->sub('formats'); } $tem->sub('tem_sets'); - if(!$always_field and $input != 'checkbox' and $input != 'radio') { - $always_field = $name; - } } } - # always_field is a form field that always submits (unlike say, checkboxes). It's used to detect if the form has submitted or not. + $tem->set('always_field', $always_field); $tem->set('db_fields', $db_fields); $tem->set('php_fields', $php_fields); $tem->set('metaform_url', edit_url()); + if($GLOBALS['opt_listing'] == 'Yes') { + $tem->sub('opt_listing_1'); + $tem->sub('opt_listing_2'); + $tem->sub('opt_listing_3'); + $tem->sub('opt_listing_4'); + } else { + $tem->sub('opt_listing_3_else'); + $tem->sub('opt_listing_4_else'); + } if($GLOBALS['opt_db'] == 'Yes') { $tem->sub('opt_db_1'); $tem->sub('opt_db_2');