Marius Burkard
2016-04-20 4569cae57f127afd093794310ccd290d2d9fdf36
commit | author | age
086696 1 <?php
M 2
3 /*
4 Copyright (c) 2007, Till Brehm, projektfarm Gmbh
5 All rights reserved.
6
7 Redistribution and use in source and binary forms, with or without modification,
8 are permitted provided that the following conditions are met:
9
10     * Redistributions of source code must retain the above copyright notice,
11       this list of conditions and the following disclaimer.
12     * Redistributions in binary form must reproduce the above copyright notice,
13       this list of conditions and the following disclaimer in the documentation
14       and/or other materials provided with the distribution.
15     * Neither the name of ISPConfig nor the names of its contributors
16       may be used to endorse or promote products derived from this software without
17       specific prior written permission.
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
26 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 class validate_database {
b1a6a5 32
086696 33     /*
M 34         Validator function to check if a given list of ips is ok.
35     */
36     function valid_ip_list($field_name, $field_value, $validator) {
37         global $app;
b1a6a5 38
MC 39         if($_POST["remote_access"] == "y") {
40             if(trim($field_value) == "") return;
41
42             $values = explode(",", $field_value);
43             foreach($values as $cur_value) {
44                 $cur_value = trim($cur_value);
45                 $valid = true;
ec9c54 46                 if(function_exists('filter_var')) {
3c6ea9 47                     if(!filter_var($cur_value, FILTER_VALIDATE_IP)) {
ec9c54 48                         $valid = false;
b1a6a5 49                     }
3c6ea9 50                 } else return "function filter_var missing <br />\r\n";
FS 51
b1a6a5 52                 if($valid == false) {
MC 53                     $errmsg = $validator['errmsg'];
54                     if(isset($app->tform->wordbook[$errmsg])) {
55                         return $app->tform->wordbook[$errmsg]."<br>\r\n";
56                     } else {
57                         return $errmsg."<br>\r\n";
58                     }
59                 }
60             }
61         }
62     }
63
64
65
66
67 }