You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
<?php //$id$
|
|
/**
|
|
* This script contains the data to fill (or empty) the database with using
|
|
* the fillers in this directory.
|
|
* @author Yannick Warnier <yannick.warnier@dokeos.com>
|
|
*
|
|
*/
|
|
/**
|
|
* Initialisation section
|
|
*/
|
|
$users = array();
|
|
$users[] = array(
|
|
'username' => 'ywarnier',
|
|
'pass' => 'ywarnier',
|
|
'firstname' => 'Yannick',
|
|
'lastname' => 'Warnier',
|
|
'status' => 1,
|
|
'auth_source' => 'platform',
|
|
'email' => 'yannick.warnier@testdokeos.com',
|
|
'status' => 1,
|
|
'creator_id' => 1,
|
|
'active' => 1,
|
|
);
|
|
$users[] = array(
|
|
'username' => 'mmosquera',
|
|
'pass' => 'mmosquera',
|
|
'firstname' => 'Michela',
|
|
'lastname' => 'Mosquera Guardamino',
|
|
'status' => 1,
|
|
'auth_source' => 'platform',
|
|
'email' => 'michela.mosquera@testdokeos.com',
|
|
'status' => 1,
|
|
'creator_id' => 1,
|
|
'active' => 1,
|
|
);
|
|
$users[] = array(
|
|
'username' => 'mlanoix',
|
|
'pass' => 'mlanoix',
|
|
'firstname' => 'Michel',
|
|
'lastname' => 'Lanoix',
|
|
'status' => 5,
|
|
'auth_source' => 'platform',
|
|
'email' => 'michel.lanoix@testdokeos.com',
|
|
'status' => 1,
|
|
'creator_id' => 1,
|
|
'active' => 1,
|
|
);
|
|
/*
|
|
$users[] = array(
|
|
'username' => '',
|
|
'pass' => '',
|
|
'firstname' => '',
|
|
'lastname' => '',
|
|
'status' => 1,
|
|
'auth_source' => 'platform',
|
|
'email' => '',
|
|
'status' => 1,
|
|
'creator_id' => 1,
|
|
'active' => 1,
|
|
);
|
|
*/ |