added support for profile in account_container.

With the new functions it should be possible to create
This commit is contained in:
katagia 2004-01-29 20:11:05 +00:00
parent aa3338f15b
commit 45c3b80d46
2 changed files with 47 additions and 12 deletions

View File

@ -772,6 +772,7 @@ class accountContainer {
*/ */
function check_attributes() { function check_attributes() {
$return = array(); $return = array();
if (is_array($this->attributes)) {
// get named list of attributes // get named list of attributes
$attributes = array_keys($this->attributes); $attributes = array_keys($this->attributes);
for ($i=0; $i<count($attributes); $i++) { for ($i=0; $i<count($attributes); $i++) {
@ -787,6 +788,7 @@ class accountContainer {
} }
return $return; return $return;
} }
}
/* This function adds an objectClass class (module) to accountContainer /* This function adds an objectClass class (module) to accountContainer
*/ */
@ -854,6 +856,39 @@ class accountContainer {
return 0; return 0;
} }
function display_profile($post) {
$return = array();
$post = array();
$module = array_keys ($this->module);
foreach ($module as $singlemodule) {
// get list of display functions.
$list = $this->module[$singlemodule]->pages();
foreach ($list as $item) {
$function = 'display_html_' . $item;
$page = $this->module[$singlemodule]->$function($post,true);
//eval($function);
$return = array_merge($return, $page);
}
}
return $return;
}
function process_profile($post) {
$return = array();
$module = array_keys ($this->module);
foreach ($module as $singlemodule) {
// get list of display functions.
$list = $this->module[$singlemodule]->pages();
foreach ($list as $item) {
$function = 'display_html_' . $item;
$page = $this->module[$singlemodule]->$function($post,true);
//eval($function);
$return = array_merge($return, $page);
}
}
return $return;
}
/* This function will prepare the object /* This function will prepare the object
* for a new account * for a new account
*/ */

View File

@ -151,7 +151,7 @@ class posixAccount {
* error checkings * error checkings
*/ */
function pages() { function pages() {
return array('attributes', 'groups'); return array('attributes', 'group');
} }
/* /*