<?php
/*
********************************************************
Name: devConfig.php
Author: Rob Hunter
Date 1/4/11
Description: Sometimes a man, and I won't say a hero, beacuse what's a
hero? But sometimes a man, and I'm talking about me here, sometimes a man
needs some configs that are kept separate from the user configs. These
are those configs.
********************************************************
*/
$allowedStrAttributes = array( 'title' => TRUE,
'type' => TRUE,
'id' => TRUE,
'description' => TRUE,
'contributorName' => TRUE,
);
$allowedNumAttributes = array( 'createdDate' => TRUE,
'updatedDate' => TRUE,
);
$allowedStrOperators = array( '=' => '=',
'like' => 'function',
'likeic' => 'function',
'eic' => 'function',
'<>' => '<>',
'!=' => '<>',
'eq' => '=',
'ne' => '<>',
'neic' => 'function',
);
$allowedNumOperators = array( '=' => '=',
'!=' => '<>',
'<>' => '<>',
'<' => '<',
'>' => '>',
'<=' => '<=',
'>=' => '>=',
);
?>