本文整理汇总了PHP中Profile::set_obj_selectlist_fields方法的典型用法代码示例。如果您正苦于以下问题:PHP Profile::set_obj_selectlist_fields方法的具体用法?PHP Profile::set_obj_selectlist_fields怎么用?PHP Profile::set_obj_selectlist_fields使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Profile
的用法示例。
在下文中一共展示了Profile::set_obj_selectlist_fields方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: smarty_function_init_file
//.........这里部分代码省略.........
$obj->fullpath = preg_replace('#/$#', '', $site->absolute_path) . $obj->all['relative_path'];
unset($obj->all['fullpath']);
$obj->filename = $obj->all['filename'];
$obj->mimetype = $obj->all['mimetype'];
$obj->profile_id = $obj->all['profile_id'];
$obj->url = $site->CONF['wwwroot'] . $obj->all['relative_path'];
$obj->size = print_filesize($obj->all['size']);
$pathinfo = pathinfo($obj->fullpath);
$obj->extension = strtolower($pathinfo['extension']);
// for images give gallery thumbs and images
if (strpos($obj->all['mimetype'], 'image/') === 0) {
$folder = preg_replace('#/$#', '', $site->absolute_path) . str_replace($obj->all['filename'], '', $obj->all['relative_path']);
$folder_url = $site->CONF['wwwroot'] . $folder;
//thumbs
if (file_exists($folder . '.gallery_thumbnails/' . $obj->all['filename']) && ($thumb_info = @getimagesize($folder . '.gallery_thumbnails/' . $obj->all['filename']))) {
$obj->thumb_path = $folder_url . '.gallery_thumbnails/' . $obj->all['filename'];
$obj->thumb_width = $thumb_info[0];
$obj->thumb_height = $thumb_info[1];
}
//image
if (file_exists($folder . '.gallery_pictures/' . $obj->all['filename']) && ($image_info = @getimagesize($folder . '.gallery_pictures/' . $obj->all['filename']))) {
$obj->image_path = $folder_url . '.gallery_pictures/' . $obj->all['filename'];
$obj->image_width = $image_info[0];
$obj->image_height = $image_info[1];
}
//actual image
if (file_exists($site->absolute_path . $obj->all['relative_path']) && ($actual_image_info = @getimagesize($site->absolute_path . $obj->all['relative_path']))) {
$obj->actual_image_path = $obj->url;
$obj->actual_image_width = $actual_image_info[0];
$obj->actual_image_height = $actual_image_info[1];
}
}
if ($icons) {
if (!preg_match("/\\/\$/", $icons)) {
$icons .= '/';
}
if (file_exists($site->absolute_path . $icons . $obj->extension . '.gif')) {
$obj->icon = $site->CONF['wwwroot'] . '/' . $icons . $obj->extension . '.gif';
} elseif (file_exists($site->absolute_path . $icons . 'unknown.gif')) {
$obj->icon = $site->CONF['wwwroot'] . '/' . $icons . 'unknown.gif';
}
}
if (!$profile) {
$default_profile_def = $site->get_profile(array('id' => $site->get_default_profile_id(array(source_table => 'obj_file'))));
# get profile name
$profile = $default_profile_def['name'];
unset($default_profile_def);
}
##############
# put all profile names into arr
if ($profile) {
$profile_names = split(",", $profile);
} else {
$profile_names = array();
$profile_ids = array();
}
# get all profile data from cash
foreach ($profile_names as $profile_name) {
# profile name is case insensitive
$profile_name = strtolower($profile_name);
$profile_def = $site->get_profile(array(name => $profile_name));
# sanity check: kui ei leitud sellise nimega profiili, anda toimetajale veateade
if (!$profile_def['profile_id']) {
if ($site->admin) {
print "<font color=red><b>Profile '" . $profile_name . "' not found!</b></font>";
}
return;
}
$profile_ids[] = $profile_def['profile_id'];
$profile_arr[$profile_def['profile_id']] = $profile_def;
}
$obj->buttons = $obj->get_edit_buttons(array('nupud' => $buttons, 'tyyp_idlist' => 21, 'publish' => $publish, 'profile_id' => join(',', $profile_ids)));
$profile_def = $site->get_profile(array('id' => $obj->all['profile_id']));
if ($profile_def[profile_id]) {
include_once $class_path . 'profile.class.php';
$obj_profile = new Profile(array('id' => $obj->all['profile_id']));
#### 1. set profile fields as object attributes
$obj_profile->set_obj_general_fields(array('obj' => &$obj, 'get_object_fields' => $get_object_fields));
###################
# get selectlist values - 1 extra sql per function; sql is fast
if (is_array($obj_profile->selectlist)) {
$obj_profile->selectlist = array_unique($obj_profile->selectlist);
#printr($obj_profile->selectlist);
}
# go on if object values needs changing:
if (sizeof($obj_profile->selectlist) > 0) {
#### 2. save array "->asset_names" human readable NAME-s:
$obj_profile->get_asset_names(array('selectlist' => $obj_profile->selectlist));
### 3. save object rest of attributes
$obj_profile->set_obj_selectlist_fields(array('obj' => &$obj, 'change_fields' => $obj_profile->change_fields));
}
# if any selectvalue exist & need to change
# / get selectlist values
###################
}
foreach ($obj->all as $fieldname => $value) {
$obj->{$fieldname} = $value;
}
$smarty->assign($name, $obj);
}
示例2: smarty_function_init_object
function smarty_function_init_object($params, &$smarty)
{
global $site, $leht, $template, $class_path;
$content_template =& $leht->content_template;
##############
# default values
extract($params);
if (!isset($id)) {
$id = $leht->id;
}
if (!isset($name)) {
$name = "object";
}
###############
# action-buttons
# by default show all
if (!isset($buttons)) {
$buttons = array("new", "edit", "hide", "move", "delete");
} else {
$buttons = split(",", $buttons);
}
##############
# luua objekt & load sisu
$obj = new Objekt(array(objekt_id => $id));
$obj->load_sisu();
################
# object GENERAL parameters
$obj->id = $obj->objekt_id;
$obj->class = translate_en($obj->all[klass]);
# translate it to english
# kui link
if ($obj->all[klass] == "link") {
$objektUrl = $obj->all['url'];
// replace index.php?id=xxx or ?id=xxx style local url with its alias
if (!$site->in_editor && $site->CONF['use_aliases'] && $site->CONF['replace_links_with_alias']) {
$objektUrl = convert_local_link_to_alias($objektUrl);
}
$objektUrl && $obj->all['on_uusaken'] ? $obj->href = $objektUrl . '" target="_blank' : ($obj->href = $objektUrl);
} else {
$obj->get_object_href();
}
$obj->title = $obj->pealkiri;
$obj->buttons = $obj->get_edit_buttons(array(nupud => $buttons, tyyp_idlist => $obj->all['tyyp_id'], publish => $publish));
$obj->fdate = $obj->all[aeg];
$obj->last_modified = date('Y', $obj->all['last_modified']) > 1970 ? date('d.m.Y H:i', $obj->all['last_modified']) : '';
## crap data
$obj->flast_modified = $obj->all['last_modified'];
$obj->details_link = $obj->href;
$obj->details_title = $site->sys_sona(array(sona => "loe edasi", tyyp => "kujundus"));
$obj->printgif = '<a href="' . $obj->href . '&op=print" onClick="avaprintaken(this.href, 600, 400, \'print\'); return false;" target=_blank><img src="' . $site->img_path . '/print_it.gif" border=0 width=19 height=18></a>';
$obj->printlink = $site->self . '?id=' . $obj->objekt_id . '&op=print';
$obj->created_user_id = $obj->all['created_user_id'];
$obj->created_user_name = $obj->all['created_user_name'];
$obj->changed_user_id = $obj->all['changed_user_id'];
$obj->changed_user_name = $obj->all['changed_user_name'];
$obj->created_time = $site->db->MySQL_ee($obj->all['created_time']);
$obj->fcreated_time = $obj->all['created_time'];
$obj->changed_time = $site->db->MySQL_ee($obj->all['changed_time']);
$obj->fchanged_time = $obj->all['changed_time'];
$obj->last_commented_time = $site->db->MySQL_ee($obj->all['last_commented_time']);
$obj->comment_count = $obj->all['comment_count'];
################
# ALL values, set as attributes
foreach ($obj->all as $fieldname => $value) {
$obj->{$fieldname} = $value;
}
###############
# profile values, set as attributes
$profile_def = $site->get_profile(array(id => $obj->all['profile_id']));
if ($profile_def[profile_id]) {
include_once $class_path . 'profile.class.php';
$obj_profile = new Profile(array("id" => $obj->all['profile_id']));
#### 1. set profile fields as object attributes
$obj_profile->set_obj_general_fields(array("obj" => &$obj, "get_object_fields" => $get_object_fields));
###################
# get selectlist values - 1 extra sql per function; sql is fast
if (is_array($obj_profile->selectlist)) {
$obj_profile->selectlist = array_unique($obj_profile->selectlist);
#printr($obj_profile->selectlist);
}
# go on if object values needs changing:
if (sizeof($obj_profile->selectlist) > 0) {
#### 2. save array "->asset_names" human readable NAME-s:
$obj_profile->get_asset_names(array("selectlist" => $obj_profile->selectlist));
#printr($obj_profile->asset_names);
#printr($obj_profile->change_fields);
### 3. save object rest of attributes
#print "<br>muuta ID: ".$obj->id;
$obj_profile->set_obj_selectlist_fields(array("obj" => &$obj, "change_fields" => $obj_profile->change_fields));
}
# if any selectvalue exist & need to change
# / get selectlist values
###################
}
################
# object CLASS specific parameters
########## ARTICLE
if ($obj->class == 'article') {
//$obj = init_article(array("id"=>$obj->id), &$smarty);
if (!function_exists('smarty_function_init_article')) {
//.........这里部分代码省略.........
示例3: smarty_function_init_assets
//.........这里部分代码省略.........
##############
# load variables
$new_button = $alamlist->get_edit_buttons(array(tyyp_idlist => "20", profile_id => join(",", $profile_ids), asukoht => $position, publish => $publish));
}
# id or list
$all_change_fields = array();
$all_selectlist = array();
# array of ID-s which need additional steps to convert ID-s to human readable NAME-s (assets or users/groups)
if (!isset($buttons)) {
$buttons = array('new', 'edit', 'hide', 'move', 'delete');
} else {
$buttons = split(',', $buttons);
}
while ($obj = $alamlist->next()) {
$obj->id =& $obj->objekt_id;
$obj->class = $obj->all[klass];
# translate it to english
$obj->buttons = $obj->get_edit_buttons(array('nupud' => $buttons, tyyp_idlist => "20", profile_id => join(",", $profile_ids), publish => $publish));
$obj->date = $site->db->MySQL_ee_short($obj->all['aeg']);
$obj->datetime = $site->db->MySQL_ee($obj->all['aeg']);
$obj->fdate = substr($obj->all['aeg'], 0, strpos($obj->all['aeg'], ' '));
$obj->fdatetime = $obj->all['aeg'];
$obj->last_modified = date('d.m.Y H:i', $obj->all['last_modified']);
$obj->flast_modified = $obj->all['last_modified'];
$obj->details_link = $site->self . '?id=' . $obj->objekt_id;
$obj->details_title = $site->sys_sona(array(sona => "loe edasi", tyyp => "kujundus"));
$obj->title = $obj->pealkiri;
$obj_profile = new Profile(array("id" => $obj->all['profile_id']));
// bug #2455
if (is_array($obj_profile->data)) {
foreach ($obj_profile->data as $profile_key => $profile_data) {
if ($profile_key != $profile_data['name'] && !isset($obj->all[$profile_data['name']])) {
$obj->all[$profile_data['name']] =& $obj->all[$profile_key];
}
}
}
// / bug #2455
$obj->profile = $obj_profile->name;
# name
#### 1. set profile fields as object attributes
$obj_profile->set_obj_general_fields(array("obj" => &$obj, "get_object_fields" => $get_object_fields));
## gather all selectlist values into one array:
if (sizeof($obj_profile->selectlist) > 0) {
$all_selectlist = array_merge($obj_profile->selectlist, $all_selectlist);
}
## gather all need_change_obj values into one array:
# that means object attributes has to be cahnged later. remeMber fields for each obj.
if (sizeof($obj_profile->change_fields) > 0) {
$all_change_fields[$obj->id] = $obj_profile->change_fields;
}
#printr($obj_profile->change_fields);
$obj->created_user_id = $obj->all['created_user_id'];
$obj->created_user_name = $obj->all['created_user_name'];
$obj->changed_user_id = $obj->all['changed_user_id'];
$obj->changed_user_name = $obj->all['changed_user_name'];
$obj->created_time = $site->db->MySQL_ee($obj->all['created_time']);
$obj->fcreated_time = $obj->all['created_time'];
$obj->changed_time = $site->db->MySQL_ee($obj->all['changed_time']);
$obj->fchanged_time = $obj->all['changed_time'];
### push
array_push($assets, $obj);
}
//printr($all_selectlist);
###################
# get selectlist values - 1 (or 2, if system tables involved) extra sql per function; sql is fast
if (sizeof($all_selectlist) > 0) {
# 2. save array "->asset_names" human readable NAME-s:
$obj_profile->get_asset_names(array("selectlist" => $all_selectlist));
#printr($obj_profile->asset_names);
#printr($all_change_fields);
###############
# assign names to attributes
#echo printr($asset_names);
###############
# loop over asset objects and changes attributes values correct
$i = 0;
foreach ($assets as $tmp) {
# pointer to array element:
$obj =& $assets[$i];
# go on if object values needs changing:
if (in_array($obj->id, array_keys($all_change_fields))) {
#print "<br>muuta ID: ".$obj->id;
### 3. save object rest of attributes
$obj_profile->set_obj_selectlist_fields(array("obj" => &$obj, "change_fields" => $all_change_fields[$obj->id]));
}
# if need to change
$i++;
}
}
# if any selectvalue is to get
# / get selectlist values
###################
}
# if parameters are OK
$count = $alamlist->rows;
$counttotal = isset($limit) ? $alamlist_count->rows : $count;
##############
# assign to template variables
$smarty->assign(array($name => $assets, $name . '_newbutton' => $new_button, $name . '_counttotal' => $counttotal, $name . '_rows' => $counttotal, $name . '_count' => $count));
}
示例4: smarty_function_init_files
//.........这里部分代码省略.........
}
if (sizeof($select_sql) > 0) {
$alamlistSQL->add_select(join(", ", $select_sql));
}
$alamlistSQL->add_from("LEFT JOIN obj_file ON objekt.objekt_id=obj_file.objekt_id");
if ($where) {
$alamlistSQL->add_where($where);
}
$alamlist = new Alamlist(array(alamlistSQL => $alamlistSQL, start => $start, limit => $limit));
$alamlist->debug->print_msg();
$alamlist_count = new Alamlist(array(alamlistSQL => $alamlistSQL, on_counter => 1));
##############
# load variables
$new_button = $alamlist->get_edit_buttons(array(tyyp_idlist => "21", profile_id => join(",", $profile_ids), publish => $publish));
while ($obj = $alamlist->next()) {
$obj->buttons = $obj->get_edit_buttons(array(tyyp_idlist => "21", profile_id => join(",", $profile_ids), nupud => $buttons, publish => $publish));
$obj->id = $obj->objekt_id;
$obj->parent = $obj->parent_id;
$obj->folder_fullpath = $site->absolute_path . $folder['relative_path'];
$obj->href = $site->CONF['wwwroot'] . '/file.php?' . $obj->objekt_id;
# Bug #2317
$obj->title = $obj->all['pealkiri'];
$obj->date = $site->db->MySQL_ee_short($obj->all['aeg']);
$obj->datetime = $site->db->MySQL_ee($obj->all['aeg']);
$obj->fdate = substr($obj->all['aeg'], 0, strpos($obj->all['aeg'], ' '));
$obj->fdatetime = $obj->all['aeg'];
$pathinfo = pathinfo($site->absolute_path . $obj->all['relative_path']);
$obj->fullpath = $site->absolute_path . $obj->all['relative_path'];
$obj->filename = $obj->all['filename'];
$obj->mimetype = $obj->all['mimetype'];
# size is set later: after profiles
$obj->profile_id = $obj->all['profile_id'];
$obj->extension = strtolower($pathinfo["extension"]);
if ($icons) {
if (!preg_match("/\\/\$/", $icons)) {
$icons .= '/';
}
if (file_exists($site->absolute_path . $icons . $obj->extension . '.gif')) {
$obj->icon = $site->CONF['wwwroot'] . '/' . $icons . $obj->extension . '.gif';
} elseif (file_exists($site->absolute_path . $icons . 'unknown.gif')) {
$obj->icon = $site->CONF['wwwroot'] . '/' . $icons . 'unknown.gif';
}
}
$obj->class = translate_en($obj->all[klass]);
# translate it to english
$obj->created_user_id = $obj->all['created_user_id'];
$obj->created_user_name = $obj->all['created_user_name'];
$obj->changed_user_id = $obj->all['changed_user_id'];
$obj->changed_user_name = $obj->all['changed_user_name'];
$obj->created_time = $site->db->MySQL_ee($obj->all['created_time']);
$obj->fcreated_time = $obj->all['created_time'];
$obj->changed_time = $site->db->MySQL_ee($obj->all['changed_time']);
$obj->fchanged_time = $obj->all['changed_time'];
$obj->last_commented_time = $site->db->MySQL_ee($obj->all['last_commented_time']);
$obj->comment_count = $obj->all['comment_count'];
########## KUI PROFIIL on parameetrina kaasas JA failil on Mļæ½ļæ½RATUD mļæ½ni PROFIIL, siis korja andmed "->" omadustena kokku
if (sizeof($profile_ids) > 0) {
###### load object. #### NB! actually should be: profile_id is in "objekt" tabel. then we don't have to entire object
# $obj->load_sisu();
###### loop over profiles
foreach ($profile_ids as $profile_id) {
#printr($obj->objekt_id.' PROFILE_ID: '.$obj->all['profile_id']);
include_once $class_path . 'profile.class.php';
$obj_profile = new Profile(array("id" => $obj->all['profile_id']));
#### 1. set profile fields as object attributes
$obj_profile->set_obj_general_fields(array("obj" => &$obj, "get_object_fields" => $get_object_fields));
###################
# get selectlist values - 1 extra sql per function; sql is fast
if (is_array($obj_profile->selectlist)) {
$obj_profile->selectlist = array_unique($obj_profile->selectlist);
#printr($obj_profile->selectlist);
}
# go on if object values needs changing:
if (sizeof($obj_profile->selectlist) > 0) {
#### 2. save array "->asset_names" human readable NAME-s:
$obj_profile->get_asset_names(array("selectlist" => $obj_profile->selectlist));
#printr($obj_profile->asset_names);
#printr($obj_profile->change_fields);
### 3. save object rest of attributes
#print "<br>muuta ID: ".$obj->id;
$obj_profile->set_obj_selectlist_fields(array("obj" => &$obj, "change_fields" => $obj_profile->change_fields));
}
# if any selectvalue exist & need to change
# / get selectlist values
###################
}
###### / loop over profiles
}
####### / profile is set
$obj->size = print_filesize($obj->all['size']);
array_push($files, $obj);
}
###### / loop over objects
}
$count = sizeof($files);
$counttotal = isset($limit) ? $alamlist_count->rows : $count;
##############
# assign to template variables
$smarty->assign(array($name => $files, $name . '_newbutton' => $new_button, $name . '_counttotal' => $counttotal, $name . '_count' => $count));
}
示例5: smarty_function_init_article
//.........这里部分代码省略.........
$obj->author = $obj->all[author];
$obj->class = translate_en($obj->all[klass]);
# translate it to english
$obj->next_id = $next_art->objekt_id;
$obj->prev_id = $prev_art->objekt_id;
$obj->hit_count = $obj->all['count'];
##############
# load sisu
$obj->load_sisu();
if (0 && $context_start) {
$obj->lead = $context_start . $obj->lyhi->get_text() . '</editor:context>';
$obj->body = $context_start . $obj->sisu->get_text() . '</editor:context>';
} else {
$obj->lead = $obj->lyhi->get_text();
$obj->body = $obj->sisu->get_text();
}
if (!$site->in_editor && $site->CONF['use_aliases'] && $site->CONF['replace_links_with_alias']) {
$hostUrl = (empty($_SERVER['HTTPS']) ? 'http://' : 'https://') . $_SERVER['SERVER_NAME'] . $site->wwwroot . '/';
//body urls enclosed with "
preg_match_all('{<a[^>]+href="((' . str_replace('.', '\\.', $hostUrl) . '[^>]*|/[^>]*|index.php|)\\?([^>]*id=([0-9]+)[^>0-9]*))"[^>]*>.+</a>}Ui', $obj->body, $searchResults, PREG_SET_ORDER);
//body urls enclosed with '
preg_match_all("{<a[^>]+href='((" . str_replace('.', '\\.', $hostUrl) . "[^>]*|/[^>]*|index.php|)\\?([^>]*id=([0-9]+)[^>0-9]*))'[^>]*>.+</a>}Ui", $obj->body, $searchResults2, PREG_SET_ORDER);
$searchResults = array_merge($searchResults, $searchResults2);
//non-enclosed body urls
preg_match_all('{<a[^>]+href=((' . str_replace('.', '\\.', $hostUrl) . '[^>]*|/[^>]*|index.php|)\\?([^>]*id=([0-9]+)[^>\\s0-9]*))(\\s+[^>]*|)>.+</a>}Ui', $obj->body, $searchResults2, PREG_SET_ORDER);
$searchResults = array_merge($searchResults, $searchResults2);
//lead urls enclosed with "
preg_match_all('{<a[^>]+href="((' . str_replace('.', '\\.', $hostUrl) . '[^>]*|/[^>]*|index.php|)\\?([^>]*id=([0-9]+)[^>0-9]*))"[^>]*>.+</a>}Ui', $obj->lead, $searchResults2, PREG_SET_ORDER);
$searchResults = array_merge($searchResults, $searchResults2);
//lead urls enclosed with '
preg_match_all("{<a[^>]+href='((" . str_replace('.', '\\.', $hostUrl) . "[^>]*|/[^>]*|index.php|)\\?([^>]*id=([0-9]+)[^>0-9]*))'[^>]*>.+</a>}Ui", $obj->lead, $searchResults2, PREG_SET_ORDER);
$searchResults = array_merge($searchResults, $searchResults2);
//non-enclosed lead urls
preg_match_all('{<a[^>]+href=((' . str_replace('.', '\\.', $hostUrl) . '[^>]*|/[^>]*|index.php|)\\?([^>]*id=([0-9]+)[^>\\s0-9]*))(\\s+[^>]*|)>.+</a>}Ui', $obj->lead, $searchResults2, PREG_SET_ORDER);
$searchResults = array_merge($searchResults, $searchResults2);
foreach ($searchResults as $key => $value) {
//create an object with the id found in url
$linkObj = new Objekt(array(objekt_id => $value[4]));
$variables = array();
$separator = strpos($value[3], '&') !== false ? '&' : '&';
foreach (explode($separator, $value[3]) as $param) {
$paramArray = explode('=', $param);
if ($paramArray[0] != 'id') {
$variables[] = $param;
}
}
if (count($variables) > 0) {
$param = '?' . implode('&', $variables);
} else {
$param = '';
}
$replaceValue = str_replace($value[1], (empty($_SERVER['HTTPS']) ? 'http://' : 'https://') . $_SERVER['SERVER_NAME'] . $linkObj->get_object_href() . $param, $value[0]);
$obj->lead = str_replace($value[0], $replaceValue, $obj->lead);
$obj->body = str_replace($value[0], $replaceValue, $obj->body);
}
}
#############
# buttons (must be after load_sisu(), Bug #1963)
$obj->buttons = $obj->get_edit_buttons(array(tyyp_idlist => $obj->all['tyyp_id'], nupud => $buttons, ttyyp_id => $ttyyp_id, profile_id => $obj->all['profile_id'], publish => $publish, 'allow_comments' => $allow_comments));
########## KUI artiklil on Mļæ½ļæ½RATUD mļæ½ni PROFIIL, siis korja andmed "->" omadustena kokku
if ($obj->all['profile_id']) {
#printr($obj->objekt_id.' PROFILE_ID: '.$obj->all['profile_id']);
include_once $class_path . 'profile.class.php';
$obj_profile = new Profile(array("id" => $obj->all['profile_id']));
#### 1. set profile fields as object attributes
$obj_profile->set_obj_general_fields(array("obj" => &$obj, "get_object_fields" => $get_object_fields));
###################
# get selectlist values - 1 extra sql per function; sql is fast
if (is_array($obj_profile->selectlist)) {
$obj_profile->selectlist = array_unique($obj_profile->selectlist);
#printr($obj_profile->selectlist);
}
# go on if object values needs changing:
if (sizeof($obj_profile->selectlist) > 0) {
#### 2. save array "->asset_names" human readable NAME-s:
$obj_profile->get_asset_names(array("selectlist" => $obj_profile->selectlist));
#printr($obj_profile->asset_names);
#printr($obj_profile->change_fields);
### 3. save object rest of attributes
#print "<br>muuta ID: ".$obj->id;
$obj_profile->set_obj_selectlist_fields(array("obj" => &$obj, "change_fields" => $obj_profile->change_fields));
}
# if any selectvalue exist & need to change
# / get selectlist values
###################
}
####### / profile is set
$obj->created_user_id = $obj->all['created_user_id'];
$obj->created_user_name = $obj->all['created_user_name'];
$obj->changed_user_id = $obj->all['changed_user_id'];
$obj->changed_user_name = $obj->all['changed_user_name'];
$obj->created_time = $site->db->MySQL_ee($obj->all['created_time']);
$obj->fcreated_time = $obj->all['created_time'];
$obj->changed_time = $site->db->MySQL_ee($obj->all['changed_time']);
$obj->fchanged_time = $obj->all['changed_time'];
##############
# assign to template variables
$smarty->assign($name, $obj);
//return $obj; # bug #1921 # for {init_object} tag
}