Ignore:
Timestamp:
Dec 12, 2013, 10:19:00 PM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Ověření vstupu číslené hodnoty do formuláře.
  • Úpraveno: Změna cesty pro upload souborů v aktualitách.
File:
1 edited

Legend:

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

    r548 r607  
    2323    return($_POST[$Item['Name']]);
    2424  }
     25 
     26  function Validate($Item)
     27  {
     28        if($Item['Null'] and ($Item['Value'] == '')) return(true);
     29        return(filter_var($Item['Value'], FILTER_VALIDATE_INT));
     30  }
     31 
     32  function GetValidationFormat()
     33  {
     34        return('číselná hodnota');
     35  }
    2536}
Note: See TracChangeset for help on using the changeset viewer.