summaryrefslogtreecommitdiff
blob: e1ee96fd11e43d784d58ee3acba95ea9f0f5861a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
set_include_path("/usr/share/php/pluf");

require '/<PATH TO INDEFERO>/src/IDF/conf/path.php';
require 'Pluf.php';

Pluf::start('/<PATH TO INDEFERO>/src/IDF/conf/idf.php');
Pluf_Dispatcher::loadControllers(Pluf::f('idf_views'));

$user = new Pluf_User();
$user->first_name = 'Foo';
$user->last_name = 'Bar'; // Required!
$user->login = 'foobar'; // must be lowercase!
$user->email = 'foo@bar.com';
$user->password = 'foobarbaz'; // the password is salted/hashed
// in the database, so do not worry :)
$user->administrator = true;
$user->active = true;
$user->create();
print "Bootstrap ok\n";
?>