Menu

[r1]: / config / devConfig.php  Maximize  Restore  History

Download this file

44 lines (40 with data), 1.8 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?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( '=' => '=',
'!=' => '<>',
'<>' => '<>',
'<' => '<',
'>' => '>',
'<=' => '<=',
'>=' => '>=',
);
?>
MongoDB Logo MongoDB