Gentics Portal.Node PHP API
 All Classes Namespaces Functions Variables Pages
gportal_users.php
1 <?php
2 /**
3  * Gentics Portal.Node PHP
4  * Author & Copyright (c) by Gentics Software GmbH
5  * sales@gentics.com
6  * http://www.gentics.com
7  * Licenses can be found in the LICENSE.txt file in the root-folder of this installation
8  * You must not use this software without a valid license agreement.
9  *
10  */
11 return array(
12  'sample1' => array(
13  'id' => 1,
14  'username' => 'demo',
15  'password_not_hashed' => 'demo',
16  'password' => 'fe01ce2a7fbac8fafaed7c982a04e229', //demo
17  'email' => 'demo@example.com',
18  'activkey' => '099f825543f7850cc038b90aaff39fac',
19  'status' => 1,
20  ),
21 
22  'sample2' => array(
23  'id' => 2,
24  'username' => 'demo2',
25  'password_not_hashed' => 'demo',
26  'password' => 'fe01ce2a7fbac8fafaed7c982a04e229', //demo
27  'email' => 'demo2@example.com',
28  'activkey' => '099f825543f7850cc038b90aaff39fac',
29  'status' => 0,
30  ),
31 
32  'sample3' => array(
33  'id' => 3,
34  'username' => 'demo3',
35  'password_not_hashed' => 'demo',
36  'password' => 'fe01ce2a7fbac8fafaed7c982a04e229', //demo
37  'email' => 'demo3@example.com',
38  'activkey' => '099f825543f7850cc038b90aaff39fac',
39  'status' => -1,
40  ),
41  'sample4' => array(
42  'id' => 4,
43  'username' => '',
44  'password_not_hashed' => 'demo',
45  'password' => 'fe01ce2a7fbac8fafaed7c982a04e229', //demo
46  'email' => 'demo4@example.com',
47  'activkey' => '099f825543f7850cc038b90aaff39fac',
48  'status' => 1,
49  ),
50  'admin' => array(
51  'id' => 5,
52  'username' => 'admin',
53  'password_not_hashed' => 'demo',
54  'password' => 'fe01ce2a7fbac8fafaed7c982a04e229', //demo
55  'email' => 'admin@example.com',
56  'activkey' => '099f825543f7850cc038b90aaff39fac',
57  'status' => 1,
58  ),
59  'manageComments' => array(
60  'id' => 6,
61  'username' => 'manageComments',
62  'password_not_hashed' => 'demo',
63  'password' => 'fe01ce2a7fbac8fafaed7c982a04e229', //demo
64  'email' => 'manageComments@example.com',
65  'activkey' => '099f825543f7850cc038b90aaff39fac',
66  'status' => 1,
67  ),
68  'commenterWithoutRights' => array(
69  'id' => 7,
70  'username' => 'commenterWithoutRights',
71  'password_not_hashed' => 'demo',
72  'password' => 'fe01ce2a7fbac8fafaed7c982a04e229', //demo
73  'email' => 'commenterWithoutRights@example.com',
74  'activkey' => '099f825543f7850cc038b90aaff39fac',
75  'status' => 1,
76  ),
77  'commentsModerator' => array(
78  'id' => 8,
79  'username' => 'commentsModerator',
80  'password_not_hashed' => 'demo',
81  'password' => 'fe01ce2a7fbac8fafaed7c982a04e229', //demo
82  'email' => 'commentsModerator@example.com',
83  'activkey' => '099f825543f7850cc038b90aaff39fac',
84  'status' => 1,
85  ),
86 
87 
88 );