/[corp_html]/inc/Smarty.local.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /inc/Smarty.local.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.11 by dpavlin, Wed Nov 21 10:21:57 2001 UTC revision 1.12 by dpavlin, Fri Apr 5 09:40:39 2002 UTC
# Line 185  function smarty_func_rinput() { Line 185  function smarty_func_rinput() {
185          }          }
186          print "<input type=\"hidden\" name=\"inputs_required[]\" value=\"$name\">";          print "<input type=\"hidden\" name=\"inputs_required[]\" value=\"$name\">";
187  }  }
188    
189    // not strictly smarty, but it should be here and not in common.inc
190    
191    function check_required() {
192            global $inputs_required;
193            global $inputs_required_type;
194            $ok=1;
195            if (isset($inputs_required)) {
196                    foreach ($inputs_required as $i) {
197                            if (! isset($GLOBALS[$i]) || $GLOBALS[$i] == "") $ok=0;
198                            switch (strtolower($inputs_required_type[$i])) {
199                                    case 'email':
200                                            if (!strstr($GLOBALS[$i],'@')) $ok=0;
201                            }
202    //                      print "$i: $GLOBALS[$i] type: $inputs_required_type[$i] $ok -- ";
203    
204                    }
205            } else {
206                    print "<!-- no inputs required -->";
207            }
208            return $ok;
209    }
210    
211  ?>  ?>

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

  ViewVC Help
Powered by ViewVC 1.1.26