Ignore:
Timestamp:
Apr 14, 2015, 10:20:16 PM (10 years ago)
Author:
chronos
Message:
  • Removed: Spaces on end of line.
  • Modified: Tabs converted to spaces.
Location:
trunk/Common/Form/Types
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Form/Types/Base.php

    r606 r738  
    4444    return(addslashes($Value));
    4545  }
    46  
     46
    4747  function OnFilterName($Item)
    4848  {
    49     if(array_key_exists('SQL', $Item) and ($Item['SQL'] != '')) 
     49    if(array_key_exists('SQL', $Item) and ($Item['SQL'] != ''))
    5050      $SQL = '('.$Item['SQL'].') AS ';
    5151      else $SQL = '';
     
    5555  function OnFilterNameQuery($Item)
    5656  {
    57     if(array_key_exists('SQL', $Item) and ($Item['SQL'] != '')) 
     57    if(array_key_exists('SQL', $Item) and ($Item['SQL'] != ''))
    5858      $Output = '('.$Item['SQL'].') AS `'.$Item['Name'].'`, ('.$Item['SQL'].') AS `'.$Item['Name'].'_Filter`';
    5959      else $Output = '`'.$Item['Name'].'`, `'.$Item['Name'].'` AS `'.$Item['Name'].'_Filter`';
    6060    return($Output);
    6161  }
    62  
     62
    6363  function Validate($Item)
    6464  {
    65         return(true);
     65    return(true);
    6666  }
    6767
    6868  function GetValidationFormat()
    6969  {
    70         return('');
     70    return('');
    7171  }
    7272}
  • trunk/Common/Form/Types/Boolean.php

    r548 r738  
    2121  function OnLoad($Item)
    2222  {
    23     if(array_key_exists($Item['Name'], $_POST)) return(1); 
     23    if(array_key_exists($Item['Name'], $_POST)) return(1);
    2424      else return(0);
    2525  }
  • trunk/Common/Form/Types/Enumeration.php

    r548 r738  
    1818    $Type = $this->FormManager->Type->GetTypeDefinition($Item['Type']);
    1919    $Output = '<select name="'.$Item['Name'].'">';
    20       if(array_key_exists('Null', $Item) and $Item['Null']) 
     20      if(array_key_exists('Null', $Item) and $Item['Null'])
    2121    {
    2222      if($Item['Value'] == NULL) $Selected = ' selected="1"'; else $Selected = '';
     
    3737    return($_POST[$Item['Name']]);
    3838  }
    39  
     39
    4040  function OnLoadDb($Item)
    4141  {
  • trunk/Common/Form/Types/Hidden.php

    r548 r738  
    1010    $this->Hidden = true;
    1111  }
    12  
     12
    1313  function OnView($Item)
    1414  {
  • trunk/Common/Form/Types/IPv4Address.php

    r606 r738  
    2121    return($_POST[$Item['Name']]);
    2222  }
    23  
     23
    2424  function Validate($Item)
    2525  {
    26         if($Item['Null'] and ($Item['Value'] == '')) return(true);
    27         return(filter_var($Item['Value'], FILTER_VALIDATE_IP, array('flags' => FILTER_FLAG_IPV4)));
     26    if($Item['Null'] and ($Item['Value'] == '')) return(true);
     27    return(filter_var($Item['Value'], FILTER_VALIDATE_IP, array('flags' => FILTER_FLAG_IPV4)));
    2828  }
    29  
     29
    3030  function GetValidationFormat()
    3131  {
    32         return('x.x.x.x kde x je hodnota 0..255');
    33   } 
     32    return('x.x.x.x kde x je hodnota 0..255');
     33  }
    3434}
  • trunk/Common/Form/Types/IPv6Address.php

    r606 r738  
    2121    return($_POST[$Item['Name']]);
    2222  }
    23  
     23
    2424  function Validate($Item)
    2525  {
    26         if($Item['Null'] and ($Item['Value'] == '')) return(true);
    27         return(filter_var($Item['Value'], FILTER_VALIDATE_IP, array('flags' => FILTER_FLAG_IPV6)));
     26    if($Item['Null'] and ($Item['Value'] == '')) return(true);
     27    return(filter_var($Item['Value'], FILTER_VALIDATE_IP, array('flags' => FILTER_FLAG_IPV6)));
    2828  }
    2929
    3030  function GetValidationFormat()
    3131  {
    32         return('xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx kde x je hexa hodnota 0..f');
     32    return('xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx kde x je hexa hodnota 0..f');
    3333  }
    3434}
  • trunk/Common/Form/Types/Image.php

    r631 r738  
    22
    33class TypeImage extends TypeString
    4 { 
     4{
    55  function OnView($Item)
    66  {
    77    global $System;
    8    
     8
    99    return('<img src="'.$System->Link('/images/favicons/'.$Item['Value']).'"/> '.$Item['Value']);
    1010  }
  • trunk/Common/Form/Types/Integer.php

    r611 r738  
    2323    return($_POST[$Item['Name']]);
    2424  }
    25  
     25
    2626  function Validate($Item)
    2727  {
    28         if($Item['Null'] and ($Item['Value'] == '')) return(true);
    29         return(preg_match('/^\-*[0-9\.]+$/', $Item['Value']));
     28    if($Item['Null'] and ($Item['Value'] == '')) return(true);
     29    return(preg_match('/^\-*[0-9\.]+$/', $Item['Value']));
    3030  }
    31  
     31
    3232  function GetValidationFormat()
    3333  {
    34         return('číselná hodnota');
    35   } 
     34    return('číselná hodnota');
     35  }
    3636}
  • trunk/Common/Form/Types/MacAddress.php

    r683 r738  
    3232  function Validate($Item)
    3333  {
    34         if($Item['Null'] and ($Item['Value'] == '')) return(true);
    35         return(preg_match('/^([0-9A-F]{2}[:]){5}([0-9A-F]{2})$/', $Item['Value']));
     34    if($Item['Null'] and ($Item['Value'] == '')) return(true);
     35    return(preg_match('/^([0-9A-F]{2}[:]){5}([0-9A-F]{2})$/', $Item['Value']));
    3636  }
    3737
    3838  function GetValidationFormat()
    3939  {
    40         return('XX:XX:XX:XX:XX:XX kde X je hexa hodnota 0..F');
     40    return('XX:XX:XX:XX:XX:XX kde X je hexa hodnota 0..F');
    4141  }
    4242}
  • trunk/Common/Form/Types/Password.php

    r548 r738  
    2727    $Result = $_POST[$Item['Name']];
    2828    /*
    29     if(!array_key_exists('SourceItemId', $Item)) $Result = sha1($_POST[$Item['Name']]);   
     29    if(!array_key_exists('SourceItemId', $Item)) $Result = sha1($_POST[$Item['Name']]);
    3030    else
    3131    {
     
    4141    return($Result);
    4242  }
    43  
     43
    4444  function OnSaveDb($Item)
    4545  {
    46     if($Item['Value'] == '') return(''); 
     46    if($Item['Value'] == '') return('');
    4747    else {
    4848      $PasswordHash = new PasswordHash();
     
    5050    }
    5151  }
    52    
     52
    5353  function OnLoadDb($Item)
    5454  {
  • trunk/Common/Form/Types/RandomHash.php

    r548 r738  
    1010    $this->Hidden = true;
    1111  }
    12  
     12
    1313  function OnView($Item)
    1414  {
Note: See TracChangeset for help on using the changeset viewer.