diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-05 05:32:47 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-05 05:32:47 +0000 |
commit | 3c65b68e1c958190ea6c4ca995019109a6a55865 (patch) | |
tree | 9a4731cbef922fbb838a1f2e41773ab576f3281b /modules/user/models | |
parent | a60944e07d77bcc020bf33934055702dae89b875 (diff) |
The start of the user module. At this point, it shows up on the scaffolding screen and you can install and uninstall it. Which creates the tables, defines 2 groups (adminstrator, registered) and one user (admin).
Diffstat (limited to 'modules/user/models')
-rw-r--r-- | modules/user/models/group.php | 22 | ||||
-rw-r--r-- | modules/user/models/user.php | 22 |
2 files changed, 44 insertions, 0 deletions
diff --git a/modules/user/models/group.php b/modules/user/models/group.php new file mode 100644 index 00000000..e9943fac --- /dev/null +++ b/modules/user/models/group.php @@ -0,0 +1,22 @@ +<?php defined("SYSPATH") or die("No direct script access."); +/** + * Gallery - a web based photo album viewer and editor + * Copyright (C) 2000-2008 Bharat Mediratta + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. + */ +class Group_Model extends ORM { + protected $has_and_belongs_to_many = array('users'); +}
\ No newline at end of file diff --git a/modules/user/models/user.php b/modules/user/models/user.php new file mode 100644 index 00000000..8b48b7e5 --- /dev/null +++ b/modules/user/models/user.php @@ -0,0 +1,22 @@ +<?php defined("SYSPATH") or die("No direct script access."); +/** + * Gallery - a web based photo album viewer and editor + * Copyright (C) 2000-2008 Bharat Mediratta + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. + */ +class User_Model extends ORM { + protected $has_and_belongs_to_many = array('groups'); +}
\ No newline at end of file |