PHP Classes

File: function.acFormValidateCMS.php

Recommend this page to a friend!
  Classes of invitro   Navelo CMS   function.acFormValidateCMS.php   Download  
File: function.acFormValidateCMS.php
Role: Auxiliary script
Content type: text/plain
Description: General function to validate for action
Class: Navelo CMS
A complete Content Management System
Author: By
Last change:
Date: 19 years ago
Size: 880 bytes
 

Contents

Class file image Download
<?php
// 2 ^ 8
function Validate255Chars( $data )
{
    return (
strlen( $data ) <= 255 ) ? true : false;
}

// 2 ^ 16
function Validate65536Chars( $data )
{
    return (
strlen( $data ) <= 65536 ) ? true : false;
}

// 2 ^ 24
function Validate16777216Chars( $data )
{
    return (
strlen( $data ) <= 16777216 ) ? true : false;
}

// 2 ^ 32
function Validate4294967296Chars( $data )
{
    return (
strlen( $data ) <= 4294967296 ) ? true : false;
}

function
ValidateAddCategoryName( $data )
{
   
$category_name = array( $data );
    return (
$GLOBALS['admin']->CheckCategoryName( $GLOBALS['admin']->StripData( $category_name ) ) > 0 ) ? false : true;
}

function
ValidateUpdateCategoryName( $data )
{
   
$category_name = array( $data );
    return (
$GLOBALS['admin']->CheckCategoryName( $GLOBALS['admin']->StripData( $category_name ) ) <= 1 ) ? true : false;
}

?>