phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] property/class.uiadmin_entity.php, 1.1.1.3


From: nomail
Subject: [Phpgroupware-cvs] property/class.uiadmin_entity.php, 1.1.1.3
Date: Fri, 21 May 2004 16:03:47 -0000

Update of /property
Modified Files:
        Branch: 
          class.uiadmin_entity.php

date: 2004/04/23 21:26:33;  author: sigurdne;  state: Exp;  lines: +1191 -1191

Log Message:
no message
=====================================================================
Index: property/class.uiadmin_entity.php
diff -u property/class.uiadmin_entity.php:1.1.1.2 
property/class.uiadmin_entity.php:1.1.1.3
--- property/class.uiadmin_entity.php:1.1.1.2   Fri Apr 23 20:26:15 2004
+++ property/class.uiadmin_entity.php   Fri Apr 23 21:26:33 2004
@@ -1,1191 +1,1191 @@
-<?php
-       
/**************************************************************************\
-       * phpGroupWare - property                                               
   *
-       * http://www.phpgroupware.org                                           
   *
-       *                                                                       
   *
-       * Facilities Management                                                 
   *
-       * Written by Sigurd Nes [sigurdne at online.no]                         
   *
-       * 
------------------------------------------------------------------------ *
-       * Copyright 2000 - 2003 Free Software Foundation, Inc                   
   *
-       * This program is part of the GNU project, see http://www.gnu.org/      
   *
-       * 
------------------------------------------------------------------------ *
-       * 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.                                            
   *
-       
\**************************************************************************/
-
-       class property_uiadmin_entity
-       {
-               var $grants;
-               var $start;
-               var $query;
-               var $sort;
-               var $order;
-               var $sub;
-               var $currentapp;
-
-               var $public_functions = array
-               (
-                       'index'                         => True,
-                       'list_status'                   => True,
-                       'category'                      => True,
-                       'edit'                          => True,
-                       'edit_status'           => True,
-                       'edit_category'         => True,
-                       'view'                          => True,
-                       'delete'                        => True,
-                       'list_attribute'        => True,
-                       'edit_attrib'           => True,
-               );
-
-               function property_uiadmin_entity()
-               {
-                       $GLOBALS['phpgw_info']['flags']['xslt_app'] = True;
-                       $this->currentapp                       = 'property'; 
//$GLOBALS['phpgw_info']['flags']['currentapp'];
-                       $this->account                          = 
$GLOBALS['phpgw_data']['user']['id'];
-                       $this->bo                                       = 
CreateObject($this->currentapp.'_boadmin_entity',True);
-                       $this->bocommon                         = 
CreateObject($this->currentapp.'_bocommon');
-                       $this->menu                                     = 
CreateObject($this->currentapp.'_menu');
-
-                       $this->start                            = 
$this->bo->start;
-                       $this->query                            = 
$this->bo->query;
-                       $this->sort                                     = 
$this->bo->sort;
-                       $this->order                            = 
$this->bo->order;
-                       $this->entity_id                        = 
$this->bo->entity_id;
-                       $this->cat_id                           = 
$this->bo->cat_id;
-                       $this->allrows                          = 
$this->bo->allrows;
-
-                       $this->menu->sub                        ='admin_entity';
-               }
-
-               function save_sessiondata()
-               {
-                       $data = array
-                       (
-                               'start'         => $this->start,
-                               'query'         => $this->query,
-                               'sort'          => $this->sort,
-                               'order'         => $this->order,
-                               'allrows'       => $this->allrows,
-                               'entity_id'     => $this->entity_id,
-                               'cat_id'        => $this->cat_id
-                       );
-                       $this->bo->save_sessiondata($data);
-               }
-
-               function index()
-               {
-                       $this->bo->reset_fm_cache();
-                       $this->bocommon->xsl_add_file(array(
-                                                                               
'admin_entity',
-                                                                               
'nextmatchs',
-                                                                               
'menu',
-                                                                               
'search_field'));
-                       $links = $this->menu->links();
-
-                       $entity_list = $this->bo->read();
-
-                       if (isSet($entity_list) AND is_array($entity_list))
-                       {
-                               foreach($entity_list as $entry)
-                               {
-                                       $content[] = array
-                                       (
-                                               'id'                            
                => $entry['id'],
-                                               'name'                          
                => $entry['name'],
-                                               'descr'                         
                => $entry['descr'],
-                                               'link_categories'               
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.category&entity_id='
 . $entry['id']),
-                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit&id='
 . $entry['id']),
-                                               'link_delete'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.delete&entity_id='
 . $entry['id']),
-                                               'lang_view_standardtext'        
=> lang('view the standard'),
-                                               'lang_category_text'            
=> lang('categories for the entity type'),
-                                               'lang_edit_standardtext'        
=> lang('edit the entity'),
-                                               'lang_delete_standardtext'      
=> lang('delete the entity'),
-                                               'text_categories'               
        => lang('Categories'),
-                                               'text_edit'                     
                => lang('edit'),
-                                               'text_delete'                   
        => lang('delete')
-                                       );
-                               }
-                       }
-
-//html_print_r($content);
-
-                       $table_header[] = array
-                       (
-
-                               'lang_descr'            => lang('Descr'),
-                               'lang_categories'       => lang('Categories'),
-                               'lang_edit'                     => lang('edit'),
-                               'lang_delete'           => lang('delete'),
-                               'sort_id'       => 
$this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'id',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.index',
-                                                                               
                                                'allrows'=>$this->allrows)
-                                                                               
)),
-                               'lang_id'       => lang('entity id'),
-                               'sort_name'     => 
$this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'name',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.index',
-                                                                               
                                                'allrows'=>$this->allrows)
-                                                                               
)),
-                               'lang_name'     => lang('Name'),
-                       );
-
-                       $table_add[] = array
-                       (
-                               'lang_add'                              => 
lang('add'),
-                               'lang_add_standardtext' => lang('add a 
standard'),
-                               'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit'),
-                               'lang_done'                             => 
lang('done'),
-                               'lang_done_standardtext'        => lang('back 
to admin'),
-                               'done_action'                   => 
$this->bocommon->link('/admin/index.php')
-                       );
-
-                       if(!$this->allrows)
-                       {
-                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
-                       }
-                       else
-                       {
-                               $record_limit   = $this->bo->total_records;
-                       }
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.index',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'query'                 
=>$this->query
-                       );
-
-                       $data = array
-                       (
-                               'links'                                         
        => $links,
-                               'allow_allrows'                                 
=> True,
-                               'allrows'                                       
        => $this->allrows,
-                               'start_record'                                  
=> $this->start,
-                               'record_limit'                                  
=> $record_limit,
-                               'num_records'                                   
=> count($entity_list),
-                               'all_records'                                   
=> $this->bo->total_records,
-                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data),
-                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
-                               'lang_searchfield_standardtext' => lang('Enter 
the search string. To show all entries, empty this field and press the SUBMIT 
button again'),
-                               'lang_searchbutton_standardtext'        => 
lang('Submit the search string'),
-                               'query'                                         
        => $this->query,
-                               'lang_search'                                   
=> lang('search'),
-                               'table_header'                                  
=> $table_header,
-                               'values'                                        
        => $content,
-                               'table_add'                                     
        => $table_add
-                       );
-
-                       $appname                                                
= lang('entity');
-                       $function_msg                                   = 
lang('list entity type');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       //$this->save_sessiondata();
-                       return array('list' => $data);
-               }
-
-               function list_status()
-               {
-                       $this->bo->reset_fm_cache();
-                       $this->bocommon->xsl_add_file(array(
-                                                                               
'admin_entity',
-                                                                               
'nextmatchs',
-                                                                               
'menu',
-                                                                               
'search_field'));
-                       $links = $this->menu->links();
-
-                       $list = $this->bo->read_status();
-
-                       if (isSet($list) AND is_array($list))
-                       {
-                               foreach($list as $entry)
-                               {
-                                       $content[] = array
-                                       (
-                                               'id'                            
                => $entry['id'],
-                                               'descr'                         
                => $entry['descr'],
-                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_status&entity_id='
 . $this->entity_id . '&cat_id=' . $this->cat_id . '&id=' . $entry['id']),
-                                               'link_delete'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.delete&entity_id='
 . $this->entity_id . '&cat_id=' . $this->cat_id . '&status_id=' . 
$entry['id']),
-                                               'lang_edit_standardtext'        
=> lang('edit the entity'),
-                                               'lang_delete_standardtext'      
=> lang('delete the entity'),
-                                               'text_edit'                     
                => lang('edit'),
-                                               'text_delete'                   
        => lang('delete')
-                                       );
-                               }
-                       }
-
-//html_print_r($content);
-
-                       $table_header[] = array
-                       (
-
-                               'lang_descr'            => lang('Descr'),
-                               'lang_edit'                     => lang('edit'),
-                               'lang_delete'           => lang('delete'),
-                               'sort_id'       => 
$this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'id',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.list_status',
-                                                                               
                                                        'entity_id'     => 
$this->entity_id,
-                                                                               
                                                        'cat_id'        => 
$this->cat_id
-                                                                               
                                                        )
-                                                                               
)),
-                               'lang_id'       => lang('status'),
-                       );
-
-                       $table_add[] = array
-                       (
-                               'lang_add'                              => 
lang('add'),
-                               'lang_add_text' => lang('add a standard'),
-                               'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_status&entity_id='
 . $this->entity_id . '&cat_id=' . $this->cat_id),
-                               'lang_done'                             => 
lang('done'),
-                               'lang_done_text'        => lang('back to 
admin'),
-                               'done_action'                   => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.category&entity_id='
 . $this->entity_id . '&cat_id=' . $this->cat_id),
-                       );
-
-                       if(!$this->allrows)
-                       {
-                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
-                       }
-                       else
-                       {
-                               $record_limit   = $this->bo->total_records;
-                       }
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.list_status',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'query'                 
=>$this->query,
-                                               'entity_id'             
=>$this->entity_id,
-                                               'cat_id'                
=>$this->cat_id
-                       );
-
-                       $entity = 
$this->bo->read_single($this->entity_id,false);
-                       $category = 
$this->bo->read_single_category($this->entity_id,$this->cat_id);
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'lang_entity'                                   
=> lang('entity'),
-                               'entity_name'                                   
=> $entity['name'],
-                               'lang_category'                                 
=> lang('category'),
-                               'category_name'                                 
=> $category['name'],
-                               'links'                                         
        => $links,
-                               'allow_allrows'                                 
=> True,
-                               'allrows'                                       
        => $this->allrows,
-                               'start_record'                                  
=> $this->start,
-                               'record_limit'                                  
=> $record_limit,
-                               'num_records'                                   
=> count($entity_list),
-                               'all_records'                                   
=> $this->bo->total_records,
-                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data),
-                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
-                               'lang_searchfield_standardtext' => lang('Enter 
the search string. To show all entries, empty this field and press the SUBMIT 
button again'),
-                               'lang_searchbutton_standardtext'        => 
lang('Submit the search string'),
-                               'query'                                         
        => $this->query,
-                               'lang_search'                                   
=> lang('search'),
-                               'table_header_status'                   => 
$table_header,
-                               'values_status'                                 
=> $content,
-                               'table_add'                                     
        => $table_add
-                       );
-
-                       $appname                                                
= lang('entity');
-                       $function_msg                                   = 
lang('list status');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       //$this->save_sessiondata();
-                       return array('list_status' => $data);
-               }
-
-               function category()
-               {
-
-                       $entity_id      = 
get_var('entity_id',array('POST','GET'));
-
-                       $this->bocommon->xsl_add_file(array(
-                                                                               
'admin_entity',
-                                                                               
'nextmatchs',
-                                                                               
'menu',
-                                                                               
'search_field'));
-                       $links = $this->menu->links();
-
-                       $category_list = $this->bo->read_category($entity_id);
-
-                       if (isSet($category_list) AND is_array($category_list))
-                       {
-                               foreach($category_list as $entry)
-                               {
-                                       $content[] = array
-                                       (
-                                               'id'                            
                => $entry['id'],
-                                               'name'                          
                => $entry['name'],
-                                               'prefix'                        
                => $entry['prefix'],
-                                               'descr'                         
                => $entry['descr'],
-//                                             'link_status'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_status&cat_id='
 . $entry['id'] . '&entity_id=' . $entity_id),
-                                               'link_attribute'                
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_attribute&cat_id='
 . $entry['id'] . '&entity_id=' . $entity_id),
-                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_category&id='
 . $entry['id'] . '&entity_id=' . $entity_id),
-                                               'link_delete'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.delete&cat_id='
 . $entry['id'] . '&entity_id=' . $entity_id),
-                                               'lang_view_standardtext'        
=> lang('view the category'),
-                                               'lang_status_standardtext'      
=> lang('Status for the entity category'),
-                                               'lang_attribute_standardtext'   
=> lang('attributes for the entity category'),
-                                               'lang_edit_standardtext'        
=> lang('edit the standard'),
-                                               'lang_delete_standardtext'      
=> lang('delete the standard'),
-                                               'text_status'                   
=> lang('Status'),
-                                               'text_attribute'                
        => lang('Attributes'),
-                                               'text_edit'                     
                => lang('edit'),
-                                               'text_delete'                   
        => lang('delete')
-                                       );
-                               }
-                       }
-
-//html_print_r($content);
-
-                       $table_header[] = array
-                       (
-
-                               'lang_descr'            => lang('Descr'),
-                               'lang_prefix'           => lang('prefix'),
-//                             'lang_status'           => lang('Status'),
-                               'lang_attribute'        => lang('Attributes'),
-                               'lang_edit'                     => lang('edit'),
-                               'lang_delete'           => lang('delete'),
-                               'sort_id'       => 
$this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'id',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.category',
-                                                                               
                                                'entity_id' =>$entity_id,
-                                                                               
                                                'allrows'=>$this->allrows)
-                                                                               
)),
-                               'lang_id'       => lang('category id'),
-                               'sort_name'     => 
$this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'name',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.category',
-                                                                               
                                                'entity_id' =>$entity_id,
-                                                                               
                                                'allrows'=>$this->allrows)
-                                                                               
)),
-                               'lang_name'     => lang('Name'),
-                       );
-
-                       $table_add[] = array
-                       (
-                               'lang_add'                              => 
lang('add'),
-                               'lang_add_standardtext' => lang('add a 
category'),
-                               'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_category&entity_id='
 . $entity_id),
-                               'lang_done'                             => 
lang('done'),
-                               'lang_done_standardtext'        => lang('back 
to entity'),
-                               'done_action'                   => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.index')
-                       );
-
-                       $entity = $this->bo->read_single($entity_id,false);
-
-                       if(!$this->allrows)
-                       {
-                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
-                       }
-                       else
-                       {
-                               $record_limit   = $this->bo->total_records;
-                       }
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.category',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'query'                 
=>$this->query,
-                                               'entity_id'             
=>$entity_id
-                       );
-
-                       $data = array
-                       (
-                               'lang_entity'                                   
=> lang('entity'),
-                               'entity_name'                                   
=> $entity['name'],
-                               'links'                                         
        => $links,
-                               'allow_allrows'                                 
=> True,
-                               'allrows'                                       
        => $this->allrows,
-                               'start_record'                                  
=> $this->start,
-                               'record_limit'                                  
=> $record_limit,
-                               'num_records'                                   
=> count($category_list),
-                               'all_records'                                   
=> $this->bo->total_records,
-                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data),
-                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
-                               'lang_searchfield_standardtext' => lang('Enter 
the search string. To show all entries, empty this field and press the SUBMIT 
button again'),
-                               'lang_searchbutton_standardtext'        => 
lang('Submit the search string'),
-                               'query'                                         
        => $this->query,
-                               'lang_search'                                   
=> lang('search'),
-                               'table_header_category'                 => 
$table_header,
-                               'values_category'                               
=> $content,
-                               'table_add'                                     
        => $table_add
-                       );
-
-                       $appname                                                
= lang('entity');
-                       $function_msg                                   = 
lang('list entity type');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       //$this->save_sessiondata();
-                       return array('list_category' => $data);
-               }
-
-               function edit()
-               {
-                       $id     = get_var('id',array('POST','GET'));
-                       $values                 = 
get_var('values',array('POST'));
-                       $config = 
CreateObject('phpgwapi_config',$this->currentapp);
-
-                       $this->bocommon->xsl_add_file(array('admin_entity'));
-
-                       if ($values['save'])
-                       {
-                               if (!$values['name'])
-                               {
-                                       $receipt['error'][] = 
array('msg'=>lang('Name not entered!'));
-                               }
-
-                               if($id)
-                               {
-                                       $values['id']=$id;
-                                       $action='edit';
-                               }
-
-                               if (!$receipt['error'])
-                               {
-
-                                       $receipt = 
$this->bo->save($values,$action);
-                                       if(!$id)
-                                       {
-                                               $id=$receipt['id'];
-                                       }
-                                       $config->read_repository();
-
-                                       
if(!is_array($config->config_data['location_form']))
-                                       {
-                                               
$config->config_data['location_form'] = array();
-                                       }
-
-                                       if($values['location_form'])
-                                       {
-
-                                               
$config->config_data['location_form']['entity_' . $id] = 'entity_' . $id;
-
-                                       }
-                                       else
-                                       {
-                                               
unset($config->config_data['location_form']['entity_' . $id]);
-                                       }
-
-                                       $config->save_repository();
-                               }
-                               else
-                               {
-                                       $receipt['error'][] = array('msg'=> 
lang('Entity has NOT been saved'));
-                               }
-
-                       }
-
-
-                       if ($id)
-                       {
-                               $values = $this->bo->read_single($id);
-                               $function_msg = lang('edit standard');
-                               $action='edit';
-                       }
-                       else
-                       {
-                               $function_msg = lang('add entity');
-                               $action='add';
-                       }
-
-                       $include_list   = 
$this->bo->get_entity_list($values['lookup_entity']);
-                       $include_list_2 = 
$this->bo->get_entity_list_2($values['include_entity_for']);
-                       $include_list_3 = 
$this->bo->get_entity_list_3($values['start_entity_from']);
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.edit',
-                               'id'    => $id
-                       );
-//html_print_r($include_list);
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'lang_name_standardtext'                => 
lang('Enter a name of the standard'),
-                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
-                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.index'),
-                               'lang_id'                                       
        => lang('standard ID'),
-                               'lang_name'                                     
        => lang('Name'),
-                               'lang_descr'                                    
=> lang('Descr'),
-                               'lang_save'                                     
        => lang('save'),
-                               'lang_done'                                     
        => lang('done'),
-                               'value_id'                                      
        => $id,
-                               'value_name'                                    
=> $values['name'],
-                               'lang_id_standardtext'                  => 
lang('Enter the standard ID'),
-                               'lang_descr_standardtext'               => 
lang('Enter a description of the standard'),
-                               'lang_done_standardtext'                => 
lang('Back to the list'),
-                               'lang_save_standardtext'                => 
lang('Save the standard'),
-                               'type_id'                                       
        => $values['type_id'],
-                               'value_descr'                                   
=> $values['descr'],
-                               'lang_location_form'                    => 
lang('location form'),
-                               'value_location_form'                   => 
$values['location_form'],
-                               'lang_location_form_statustext' => lang('If 
this entity type is to be linked to a location'),
-                               'lang_include_in_location_form' => 
lang('include in location form'),
-                               'include_list'                                  
=> $include_list,
-                               'lang_include_statustext'               => 
lang('Which entity type is to show up in location forms'),
-                               'lang_include_this_entity'              => 
lang('include this entity'),
-                               'include_list_2'                                
=> $include_list_2,
-                               'lang_include_2_statustext'             => 
lang('Let this entity show up in location form'),
-                               'lang_start_this_entity'                => 
lang('start this entity'),
-                               'include_list_3'                                
=> $include_list_3,
-                               'lang_include_3_statustext'             => 
lang('Start this entity from'),
-                               'lang_select'                                   
=> lang('select'),
-                               'lang_documentation'                    => 
lang('documentation'),
-                               'value_documentation'                   => 
$values['documentation'],
-                               'lang_documentation_statustext' => lang('If 
this entity type is to be linked to documents'),
-                       );
-
-                       $appname                                                
= lang('entity');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('edit' => $data);
-               }
-
-               function edit_status()
-               {
-                       $id     = get_var('id',array('POST','GET'));
-                       $values                 = 
get_var('values',array('POST'));
-
-                       $this->bocommon->xsl_add_file(array('admin_entity'));
-
-                       if ($values['save'])
-                       {
-                               if (!$values['id'])
-                               {
-                                       $receipt['error'][] = 
array('msg'=>lang('ID not entered!'));
-                               }
-
-                               if($id)
-                               {
-                                       $values['id']=$id;
-                                       $action='edit';
-                               }
-
-                               if (!$receipt['error'])
-                               {
-                                       $receipt = 
$this->bo->save_status($values,$action);
-                                       if(!$id)
-                                       {
-                                               $id=$receipt['id'];
-                                       }
-                               }
-                               else
-                               {
-                                       $receipt['error'][] = array('msg'=> 
lang('Status has NOT been saved'));
-                               }
-
-                       }
-
-                       if ($id)
-                       {
-                               $values = $this->bo->read_single_status($id);
-                               $function_msg = lang('edit status');
-                               $action='edit';
-                       }
-                       else
-                       {
-                               $function_msg = lang('add status');
-                               $action='add';
-                       }
-
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.edit_status',
-                               'entity_id'             => $this->entity_id,
-                               'cat_id'                => $this->cat_id,
-                               'id'                    => $id
-                       );
-//html_print_r($link_data);
-
-                       $entity = 
$this->bo->read_single($this->entity_id,false);
-                       $category = 
$this->bo->read_single_category($this->entity_id,$this->cat_id);
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'lang_entity'                                   
=> lang('entity'),
-                               'entity_name'                                   
=> $entity['name'],
-                               'lang_category'                                 
=> lang('category'),
-                               'category_name'                                 
=> $category['name'],
-                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'lang_name_standardtext'                => 
lang('Enter a name of the standard'),
-                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
-                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_status&entity_id='
 . $this->entity_id . '&cat_id=' . $this->cat_id),
-                               'lang_id'                                       
        => lang('status ID'),
-                               'lang_descr'                                    
=> lang('Descr'),
-                               'lang_save'                                     
        => lang('save'),
-                               'lang_done'                                     
        => lang('done'),
-                               'value_id'                                      
        => $id,
-                               'lang_id_standardtext'                  => 
lang('Enter the status ID'),
-                               'lang_descr_standardtext'               => 
lang('Enter a description of the status'),
-                               'lang_done_standardtext'                => 
lang('Back to the list'),
-                               'lang_save_standardtext'                => 
lang('Save the status'),
-                               'value_descr'                                   
=> $values['descr']
-                       );
-
-                       $appname                                                
= lang('entity');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('edit_status' => $data);
-               }
-
-               function edit_category()
-               {
-                       $entity_id      = 
get_var('entity_id',array('POST','GET'));
-                       $id     = get_var('id',array('POST','GET'));
-                       $values                 = 
get_var('values',array('POST'));
-
-                       $this->bocommon->xsl_add_file(array('admin_entity'));
-
-                       if ($values['save'])
-                       {
-                               $values['entity_id']    = $entity_id;
-
-                               if (!$values['name'])
-                               {
-                                       $receipt['error'][] = 
array('msg'=>lang('Name not entered!'));
-                               }
-                               if (!$values['entity_id'])
-                               {
-                                       $receipt['error'][] = 
array('msg'=>lang('Entity not choosen'));
-                               }
-
-                               if($id)
-                               {
-                                       $values['id']=$id;
-                                       $action='edit';
-                               }
-
-                               if (!$receipt['error'])
-                               {
-                                       $receipt = 
$this->bo->save_category($values,$action);
-                                       if(!$id)
-                                       {
-                                               $id=$receipt['id'];
-                                       }
-                               }
-                               else
-                               {
-                                       $receipt['error'][] = array('msg'=> 
lang('Category has NOT been saved'));
-                               }
-
-                       }
-
-                       if ($id)
-                       {
-                               $values = 
$this->bo->read_single_category($entity_id,$id);
-                               $function_msg = lang('edit category');
-                               $action='edit';
-                       }
-                       else
-                       {
-                               $function_msg = lang('add category');
-                               $action='add';
-                       }
-
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.edit_category',
-                               'entity_id' =>$entity_id,
-                               'id'    => $id
-                       );
-//html_print_r($link_data);
-
-                       $entity = $this->bo->read_single($entity_id,false);
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'lang_entity'                                   
=> lang('entity'),
-                               'entity_name'                                   
=> $entity['name'],
-                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'lang_prefix_standardtext'              => 
lang('Enter a standard prefix for the id'),
-                               'lang_name_standardtext'                => 
lang('Enter a name of the standard'),
-
-                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
-                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.category&entity_id='
 . $entity_id),
-                               'lang_id'                                       
        => lang('Category'),
-                               'lang_name'                                     
        => lang('Name'),
-                               'lang_descr'                                    
=> lang('Descr'),
-                               'lang_prefix'                                   
=> lang('Prefix'),
-                               'lang_save'                                     
        => lang('save'),
-                               'lang_done'                                     
        => lang('done'),
-                               'value_id'                                      
        => $id,
-                               'value_name'                                    
=> $values['name'],
-                               'value_prefix'                                  
=> $values['prefix'],
-                               'lang_id_standardtext'                  => 
lang('Enter the standard ID'),
-                               'lang_descr_standardtext'               => 
lang('Enter a description of the standard'),
-                               'lang_done_standardtext'                => 
lang('Back to the list'),
-                               'lang_save_standardtext'                => 
lang('Save the standard'),
-                               'type_id'                                       
        => $values['type_id'],
-                               'value_descr'                                   
=> $values['descr'],
-                               'lang_lookup_tenant'                    => 
lang('lookup tenant'),
-                               'value_lookup_tenant'                   => 
$values['lookup_tenant'],
-                               'lang_lookup_tenant_statustext' => lang('If 
this entity type is to look up tenants'),
-                               'lang_location_level'                   => 
lang('location level'),
-                               'location_level_list'                   => 
$this->bo->get_location_level_list($values['location_level']),
-                               'lang_location_level_statustext'        => 
lang('select location level'),
-                               'lang_no_location_level'                => 
lang('None'),
-                               'lang_tracking'                                 
=> lang('tracking'),
-                               'value_tracking'                                
=> $values['tracking'],
-                               'lang_tracking_statustext'              => 
lang('If this entity type is to be tracket in ticket list'),
-                               'lang_fileupload'                               
=> lang('Enable file upload'),
-                               'value_fileupload'                              
=> $values['fileupload'],
-                               'lang_fileupload_statustext'    => lang('If 
files can be uploaded for this category'),
-                               'lang_loc_link'                                 
=> lang('Link from location'),
-                               'value_loc_link'                                
=> $values['loc_link'],
-                               'lang_loc_link_statustext'              => 
lang('Enable link from location detail')
-                       );
-
-                       $appname                                                
= lang('entity');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('edit' => $data);
-               }
-
-               function delete()
-               {
-                       $entity_id              = 
get_var('entity_id',array('POST','GET'));
-                       $cat_id         = get_var('cat_id',array('POST','GET'));
-                       $attrib_id              = 
get_var('attrib_id',array('POST','GET'));
-                       $status_id              = 
get_var('status_id',array('POST','GET'));
-                       $confirm        = get_var('confirm',array('POST'));
-
-                       if($attrib_id)
-                       {
-                               $function='list_attribute';
-                       }
-                       else
-                       {
-                               if($cat_id)
-                               {
-                                       if($status_id)
-                                       {
-                                               $function='list_status';
-                                       }
-                                       else
-                                       {
-                                               $function='category';
-                                       }
-                               }
-                               else
-                               {
-                                       $function='index';
-                               }
-                       }
-
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.'.$function,
-                               'cat_id' => $cat_id,
-                               'entity_id' => $entity_id,
-                               'attrib_id' => $attrib_id,
-                               'status_id' => $status_id
-                       );
-
-                       $delete_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.delete',
-                               'cat_id' => $cat_id,
-                               'entity_id' => $entity_id,
-                               'attrib_id' => $attrib_id,
-                               'status_id' => $status_id
-                       );
-
-                       if (get_var('confirm',array('POST')))
-                       {
-                               
$this->bo->delete($cat_id,$entity_id,$attrib_id,$status_id);
-                               Header('Location: ' . 
$this->bocommon->link('/index.php',$link_data));
-                       }
-
-                       $this->bocommon->xsl_add_file(array('app_delete'));
-
-                       $data = array
-                       (
-                               'done_action'                   => 
$this->bocommon->link('/index.php',$link_data),
-                               'delete_action'                 => 
$this->bocommon->link('/index.php',$delete_data),
-                               'lang_confirm_msg'              => lang('do you 
really want to delete this entry'),
-                               'lang_yes'                              => 
lang('yes'),
-                               'lang_yes_standardtext' => lang('Delete the 
entry'),
-                               'lang_no_standardtext'  => lang('Back to the 
list'),
-                               'lang_no'                               => 
lang('no')
-                       );
-
-                       $appname                                                
= lang('entity');
-                       $function_msg                                   = 
lang('delete entity type');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('delete' => $data);
-               }
-
-
-               function list_attribute()
-               {
-                       $entity_id      = $this->entity_id;
-                       $cat_id = $this->cat_id;
-                       $id     = get_var('id',array('POST','GET'));
-                       $resort = get_var('resort',array('POST','GET'));
-
-                       $this->bocommon->xsl_add_file(array(
-                                                                               
'admin_entity',
-                                                                               
'nextmatchs',
-                                                                               
'search_field'));
-
-                       if($resort)
-                       {
-                               $this->bo->resort_attrib($id,$resort);
-                       }
-                       $attrib_list = 
$this->bo->read_attrib($entity_id,$cat_id);
-
-                       if (isset($attrib_list) AND is_array($attrib_list))
-                       {
-                               foreach($attrib_list as $entry)
-                               {
-
-                                       $content[] = array
-                                       (
-                                               'name'                          
                => $entry['name'],
-                                               'datatype'                      
                => $entry['datatype'],
-                                               'column_name'                   
        => $entry['column_name'],
-                                               'input_text'                    
        => $entry['input_text'],
-                                               'sorting'                       
                => $entry['attrib_sort'],
-                                               'link_up'                       
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_attribute&resort=up&entity_id='
 . $entity_id . '&cat_id=' . $cat_id . '&id=' . $entry['id'] . '&allrows=' . 
$this->allrows),
-                                               'link_down'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_attribute&resort=down&entity_id='
 . $entity_id . '&cat_id=' . $cat_id . '&id=' . $entry['id'] . '&allrows=' . 
$this->allrows),
-                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_attrib&entity_id='
 . $entity_id . '&cat_id=' . $cat_id . '&id=' . $entry['id']),
-                                               'link_delete'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.delete&entity_id='
 . $entity_id . '&cat_id=' . $cat_id . '&attrib_id=' . $entry['id']),
-                                               'lang_up_text'                  
        => lang('shift up'),
-                                               'lang_down_text'                
        => lang('shift down'),
-                                               'lang_edit_text'                
        => lang('edit the attrib'),
-                                               'lang_delete_text'              
        => lang('delete the attrib'),
-                                               'text_attribute'                
        => lang('Attributes'),
-                                               'text_up'                       
                => lang('up'),
-                                               'text_down'                     
                => lang('down'),
-                                               'text_edit'                     
                => lang('edit'),
-                                               'text_delete'                   
        => lang('delete')
-                                       );
-                               }
-                       }
-
-//html_print_r($content);
-
-                       $table_header[] = array
-                       (
-                               'lang_descr'            => lang('Descr'),
-                               'lang_datatype'         => lang('Datatype'),
-                               'lang_sorting'          => lang('sorting'),
-                               'lang_edit'                     => lang('edit'),
-                               'lang_delete'           => lang('delete'),
-                               'sort_name'     => 
$this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'column_name',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.list_attribute',
-                                                                               
                                                        'entity_id'     
=>$entity_id,
-                                                                               
                                                        'cat_id'        
=>$cat_id,
-                                                                               
                                                'allrows'=>$this->allrows)
-                                                                               
)),
-                               'sort_sorting'  => 
$this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'attrib_sort',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.list_attribute',
-                                                                               
                                                        'entity_id'     
=>$entity_id,
-                                                                               
                                                        'cat_id'        
=>$cat_id,
-                                                                               
                                                'allrows'=>$this->allrows)
-                                                                               
)),
-                               'lang_name'     => lang('Name'),
-                       );
-
-                       $table_add[] = array
-                       (
-                               'lang_add'                              => 
lang('add'),
-                               'lang_add_attribtext'   => lang('add a attrib'),
-                               'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_attrib&entity_id='.$entity_id
 . '&cat_id=' . $cat_id),
-                               'lang_done'                             => 
lang('done'),
-                               'lang_done_attribtext'  => lang('back to 
admin'),
-                               'done_action'                   => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.category&entity_id='.$entity_id),
-                       );
-
-                       if(!$this->allrows)
-                       {
-                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
-                       }
-                       else
-                       {
-                               $record_limit   = $this->bo->total_records;
-                       }
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.list_attribute',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'query'                 
=>$this->query,
-                                               'entity_id'             
=>$entity_id,
-                                               'cat_id'                
=>$cat_id
-                       );
-
-                       $entity = $this->bo->read_single($entity_id,false);
-                       $category = 
$this->bo->read_single_category($entity_id,$cat_id);
-
-                       $data = array
-                       (
-                               'lang_entity'                                   
=> lang('entity'),
-                               'entity_name'                                   
=> $entity['name'],
-                               'lang_category'                                 
=> lang('category'),
-                               'category_name'                                 
=> $category['name'],
-                               'allow_allrows'                                 
=> True,
-                               'allrows'                                       
        => $this->allrows,
-                               'start_record'                                  
=> $this->start,
-                               'record_limit'                                  
=> $record_limit,
-                               'start_record'                                  
=> $this->start,
-                               'num_records'                                   
=> count($attrib_list),
-                               'all_records'                                   
=> $this->bo->total_records,
-                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data),
-                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
-                               'lang_searchfield_attribtext'   => lang('Enter 
the search string. To show all entries, empty this field and press the SUBMIT 
button again'),
-                               'lang_searchbutton_attribtext'  => lang('Submit 
the search string'),
-                               'query'                                         
        => $this->query,
-                               'lang_search'                                   
=> lang('search'),
-                               'table_header_attrib'                   => 
$table_header,
-                               'values_attrib'                                 
=> $content,
-                               'table_add'                                     
        => $table_add
-                       );
-
-                       $appname                                                
= lang('attribute');
-                       $function_msg                                   = 
lang('list entity attribute');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       //$this->save_sessiondata();
-                       return array('list_attribute' => $data);
-               }
-
-               function edit_attrib()
-               {
-                       $entity_id      = 
get_var('entity_id',array('POST','GET'));
-                       $cat_id         = get_var('cat_id',array('POST','GET'));
-                       $id                     = 
get_var('id',array('POST','GET'));
-                       $values         = get_var('values',array('POST'));
-
-                       $this->bocommon->xsl_add_file(array('admin_entity'));
-
-                       if ($values['save'])
-                       {
-                               if($id)
-                               {
-                                       $values['id']=$id;
-                                       $action='edit';
-                               }
-
-                               $values['entity_id']=$entity_id;
-                               $values['cat_id']=$cat_id;
-
-                               if (!$values['column_name'])
-                               {
-                                       $receipt['error'][] = 
array('msg'=>lang('Column name not entered!'));
-                               }
-
-                               if (!$values['input_text'])
-                               {
-                                       $receipt['error'][] = 
array('msg'=>lang('Input text not entered!'));
-                               }
-                               if (!$values['statustext'])
-                               {
-                                       $receipt['error'][] = 
array('msg'=>lang('Statustext not entered!'));
-                               }
-
-                               if (!$values['entity_id'])
-                               {
-                                       $receipt['error'][] = 
array('msg'=>lang('entity type not choosen!'));
-                               }
-
-                               if (!$values['column_info']['type'])
-                               {
-                                       $receipt['error'][] = 
array('msg'=>lang('Datatype type not choosen!'));
-                               }
-
-                               
if(!ctype_digit($values['column_info']['precision']))
-                               {
-                                       
$receipt['error'][]=array('msg'=>lang('Please enter precision as integer !'));
-                                       
unset($values['column_info']['precision']);
-                               }
-
-                               
if(!ctype_digit($values['column_info']['scale']))
-                               {
-                                       
$receipt['error'][]=array('msg'=>lang('Please enter scale as integer !'));
-                                       unset($values['column_info']['scale']);
-                               }
-
-                               if (!$values['column_info']['nullable'])
-                               {
-                                       $receipt['error'][] = 
array('msg'=>lang('Nullable not choosen!'));
-                               }
-
-
-                               if (!$receipt['error'])
-                               {
-
-                                       $receipt = 
$this->bo->save_attrib($values,$action);
-
-                                       if(!$id)
-                                       {
-                                               $id=$receipt['id'];
-                                       }
-                               }
-                               else
-                               {
-                                       $receipt['error'][] = array('msg'       
=> lang('Attribute has NOT been saved'));
-                               }
-
-                       }
-
-                       if ($id)
-                       {
-                               $values = 
$this->bo->read_single_attrib($entity_id,$cat_id,$id);
-                               $type_name=$values['type_name'];
-                               $function_msg = lang('edit attribute'). ' ' . 
lang($type_name);
-                               $action='edit';
-                       }
-                       else
-                       {
-                               $function_msg = lang('add attribute');
-                               $action='add';
-                       }
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.edit_attrib',
-                               'entity_id'     => $entity_id,
-                               'cat_id'        => $cat_id,
-                               'id'    => $id
-                       );
-
-                       if($values['column_info']['type']=='R' || 
$values['column_info']['type']=='CH' || $values['column_info']['type']=='LB')
-                       {
-                               $multiple_choice= True;
-                       }
-
-//html_print_r($values);
-
-                       $entity = $this->bo->read_single($entity_id,false);
-                       $category = 
$this->bo->read_single_category($entity_id,$cat_id);
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'lang_entity'                                   
=> lang('entity'),
-                               'entity_name'                                   
=> $entity['name'],
-                               'lang_category'                                 
=> lang('category'),
-                               'category_name'                                 
=> $category['name'],
-
-                               'lang_choice'                           => 
lang('Choice'),
-                               'lang_new_value'                        => 
lang('New value'),
-                               'lang_new_value_statustext'     => lang('New 
value for mulitple choice'),
-                               'multiple_choice'                       => 
$multiple_choice,
-                               'value_choice'                          => 
$values['choice'],
-                               'lang_delete_value'                     => 
lang('Delete value'),
-                               'lang_value'                            => 
lang('value'),
-                               'lang_delete_choice_statustext'=> lang('Delete 
this value from the list of multiple choice'),
-
-                               'msgbox_data'                           => 
$GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'form_action'                           => 
$this->bocommon->link('/index.php',$link_data),
-                               'done_action'                           => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_attribute&entity_id='.$entity_id
 . '&cat_id='.$cat_id),
-                               'lang_id'                                       
=> lang('Attribute ID'),
-                               'lang_entity_type'                      => 
lang('Entity type'),
-                               'lang_no_entity_type'           => lang('No 
entity type'),
-                               'lang_save'                                     
=> lang('save'),
-                               'lang_done'                                     
=> lang('done'),
-                               'value_id'                                      
=> $id,
-
-                               'lang_column_name'                              
=> lang('Column name'),
-                               'value_column_name'                             
=> $values['column_name'],
-                               'lang_column_name_statustext'   => lang('enter 
the name for the column'),
-
-                               'lang_input_text'                               
=> lang('input text'),
-                               'value_input_text'                              
=> $values['input_text'],
-                               'lang_input_name_statustext'    => lang('enter 
the input text for records'),
-
-                               'lang_id_attribtext'            => lang('Enter 
the attribute ID'),
-                               'lang_entity_statustext'        => lang('Select 
a entity type'),
-
-                               'lang_statustext'                       => 
lang('Statustext'),
-                               'lang_statustext_attribtext'=> lang('Enter a 
statustext for the inputfield in forms'),
-                               'value_statustext'                      => 
$values['statustext'],
-
-                               'lang_done_attribtext'          => lang('Back 
to the list'),
-                               'lang_save_attribtext'          => lang('Save 
the attribute'),
-
-                               'lang_datatype'                         => 
lang('Datatype'),
-                               'lang_datatype_statustext'      => lang('Select 
a datatype'),
-                               'lang_no_datatype'                      => 
lang('No datatype'),
-                               'datatype_list'                         => 
$this->bocommon->select_datatype($values['column_info']['type']),
-
-                               'lang_precision'                        => 
lang('Precision'),
-                               'lang_precision_statustext'     => lang('enter 
the record length'),
-                               'value_precision'                       => 
$values['column_info']['precision'],
-
-                               'lang_scale'                            => 
lang('scale'),
-                               'lang_scale_statustext'         => lang('enter 
the scale if type is decimal'),
-                               'value_scale'                           => 
$values['column_info']['scale'],
-
-                               'lang_default'                          => 
lang('default'),
-                               'lang_default_statustext'       => lang('enter 
the default value'),
-                               'value_default'                         => 
$values['column_info']['default'],
-
-                               'lang_nullable'                         => 
lang('Nullable'),
-                               'lang_nullable_statustext'      => lang('Chose 
if this column is nullable'),
-                               'lang_select_nullable'          => lang('Select 
nullable'),
-                               'nullable_list'                         => 
$this->bocommon->select_nullable($values['column_info']['nullable']),
-                               'value_lookup_form'                     => 
$values['lookup_form'],
-                               'lang_lookup_form'                              
=> lang('show in lookup forms'),
-                               'lang_lookup_form_statustext'                   
=> lang('check to show this attribue in lookup forms'),
-                               'value_list'                    => 
$values['list'],
-                               'lang_list'                             => 
lang('show in list'),
-                               'lang_list_statustext'                  => 
lang('check to show this attribute in entity list')
-                       );
-//html_print_r($data);
-
-                       $appname                                                
= lang('entity');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('edit_attrib' => $data);
-               }
-
-       }
-?>
+<?php
+       
/**************************************************************************\
+       * phpGroupWare - property                                               
   *
+       * http://www.phpgroupware.org                                           
   *
+       *                                                                       
   *
+       * Facilities Management                                                 
   *
+       * Written by Sigurd Nes [sigurdne at online.no]                         
   *
+       * 
------------------------------------------------------------------------ *
+       * Copyright 2000 - 2003 Free Software Foundation, Inc                   
   *
+       * This program is part of the GNU project, see http://www.gnu.org/      
   *
+       * 
------------------------------------------------------------------------ *
+       * 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.                                            
   *
+       
\**************************************************************************/
+
+       class property_uiadmin_entity
+       {
+               var $grants;
+               var $start;
+               var $query;
+               var $sort;
+               var $order;
+               var $sub;
+               var $currentapp;
+
+               var $public_functions = array
+               (
+                       'index'                         => True,
+                       'list_status'                   => True,
+                       'category'                      => True,
+                       'edit'                          => True,
+                       'edit_status'           => True,
+                       'edit_category'         => True,
+                       'view'                          => True,
+                       'delete'                        => True,
+                       'list_attribute'        => True,
+                       'edit_attrib'           => True,
+               );
+
+               function property_uiadmin_entity()
+               {
+                       $GLOBALS['phpgw_info']['flags']['xslt_app'] = True;
+                       $this->currentapp                       = 'property'; 
//$GLOBALS['phpgw_info']['flags']['currentapp'];
+                       $this->account                          = 
$GLOBALS['phpgw_data']['user']['id'];
+                       $this->bo                                       = 
CreateObject($this->currentapp.'_boadmin_entity',True);
+                       $this->bocommon                         = 
CreateObject($this->currentapp.'_bocommon');
+                       $this->menu                                     = 
CreateObject($this->currentapp.'_menu');
+
+                       $this->start                            = 
$this->bo->start;
+                       $this->query                            = 
$this->bo->query;
+                       $this->sort                                     = 
$this->bo->sort;
+                       $this->order                            = 
$this->bo->order;
+                       $this->entity_id                        = 
$this->bo->entity_id;
+                       $this->cat_id                           = 
$this->bo->cat_id;
+                       $this->allrows                          = 
$this->bo->allrows;
+
+                       $this->menu->sub                        ='admin_entity';
+               }
+
+               function save_sessiondata()
+               {
+                       $data = array
+                       (
+                               'start'         => $this->start,
+                               'query'         => $this->query,
+                               'sort'          => $this->sort,
+                               'order'         => $this->order,
+                               'allrows'       => $this->allrows,
+                               'entity_id'     => $this->entity_id,
+                               'cat_id'        => $this->cat_id
+                       );
+                       $this->bo->save_sessiondata($data);
+               }
+
+               function index()
+               {
+                       $this->bo->reset_fm_cache();
+                       $this->bocommon->xsl_add_file(array(
+                                                                               
'admin_entity',
+                                                                               
'nextmatchs',
+                                                                               
'menu',
+                                                                               
'search_field'));
+                       $links = $this->menu->links();
+
+                       $entity_list = $this->bo->read();
+
+                       if (isSet($entity_list) AND is_array($entity_list))
+                       {
+                               foreach($entity_list as $entry)
+                               {
+                                       $content[] = array
+                                       (
+                                               'id'                            
                => $entry['id'],
+                                               'name'                          
                => $entry['name'],
+                                               'descr'                         
                => $entry['descr'],
+                                               'link_categories'               
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.category&entity_id='
 . $entry['id']),
+                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit&id='
 . $entry['id']),
+                                               'link_delete'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.delete&entity_id='
 . $entry['id']),
+                                               'lang_view_standardtext'        
=> lang('view the standard'),
+                                               'lang_category_text'            
=> lang('categories for the entity type'),
+                                               'lang_edit_standardtext'        
=> lang('edit the entity'),
+                                               'lang_delete_standardtext'      
=> lang('delete the entity'),
+                                               'text_categories'               
        => lang('Categories'),
+                                               'text_edit'                     
                => lang('edit'),
+                                               'text_delete'                   
        => lang('delete')
+                                       );
+                               }
+                       }
+
+//html_print_r($content);
+
+                       $table_header[] = array
+                       (
+
+                               'lang_descr'            => lang('Descr'),
+                               'lang_categories'       => lang('Categories'),
+                               'lang_edit'                     => lang('edit'),
+                               'lang_delete'           => lang('delete'),
+                               'sort_id'       => 
$this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'id',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.index',
+                                                                               
                                                'allrows'=>$this->allrows)
+                                                                               
)),
+                               'lang_id'       => lang('entity id'),
+                               'sort_name'     => 
$this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'name',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.index',
+                                                                               
                                                'allrows'=>$this->allrows)
+                                                                               
)),
+                               'lang_name'     => lang('Name'),
+                       );
+
+                       $table_add[] = array
+                       (
+                               'lang_add'                              => 
lang('add'),
+                               'lang_add_standardtext' => lang('add a 
standard'),
+                               'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit'),
+                               'lang_done'                             => 
lang('done'),
+                               'lang_done_standardtext'        => lang('back 
to admin'),
+                               'done_action'                   => 
$this->bocommon->link('/admin/index.php')
+                       );
+
+                       if(!$this->allrows)
+                       {
+                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
+                       }
+                       else
+                       {
+                               $record_limit   = $this->bo->total_records;
+                       }
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.index',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'query'                 
=>$this->query
+                       );
+
+                       $data = array
+                       (
+                               'links'                                         
        => $links,
+                               'allow_allrows'                                 
=> True,
+                               'allrows'                                       
        => $this->allrows,
+                               'start_record'                                  
=> $this->start,
+                               'record_limit'                                  
=> $record_limit,
+                               'num_records'                                   
=> count($entity_list),
+                               'all_records'                                   
=> $this->bo->total_records,
+                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data),
+                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
+                               'lang_searchfield_standardtext' => lang('Enter 
the search string. To show all entries, empty this field and press the SUBMIT 
button again'),
+                               'lang_searchbutton_standardtext'        => 
lang('Submit the search string'),
+                               'query'                                         
        => $this->query,
+                               'lang_search'                                   
=> lang('search'),
+                               'table_header'                                  
=> $table_header,
+                               'values'                                        
        => $content,
+                               'table_add'                                     
        => $table_add
+                       );
+
+                       $appname                                                
= lang('entity');
+                       $function_msg                                   = 
lang('list entity type');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       //$this->save_sessiondata();
+                       return array('list' => $data);
+               }
+
+               function list_status()
+               {
+                       $this->bo->reset_fm_cache();
+                       $this->bocommon->xsl_add_file(array(
+                                                                               
'admin_entity',
+                                                                               
'nextmatchs',
+                                                                               
'menu',
+                                                                               
'search_field'));
+                       $links = $this->menu->links();
+
+                       $list = $this->bo->read_status();
+
+                       if (isSet($list) AND is_array($list))
+                       {
+                               foreach($list as $entry)
+                               {
+                                       $content[] = array
+                                       (
+                                               'id'                            
                => $entry['id'],
+                                               'descr'                         
                => $entry['descr'],
+                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_status&entity_id='
 . $this->entity_id . '&cat_id=' . $this->cat_id . '&id=' . $entry['id']),
+                                               'link_delete'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.delete&entity_id='
 . $this->entity_id . '&cat_id=' . $this->cat_id . '&status_id=' . 
$entry['id']),
+                                               'lang_edit_standardtext'        
=> lang('edit the entity'),
+                                               'lang_delete_standardtext'      
=> lang('delete the entity'),
+                                               'text_edit'                     
                => lang('edit'),
+                                               'text_delete'                   
        => lang('delete')
+                                       );
+                               }
+                       }
+
+//html_print_r($content);
+
+                       $table_header[] = array
+                       (
+
+                               'lang_descr'            => lang('Descr'),
+                               'lang_edit'                     => lang('edit'),
+                               'lang_delete'           => lang('delete'),
+                               'sort_id'       => 
$this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'id',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.list_status',
+                                                                               
                                                        'entity_id'     => 
$this->entity_id,
+                                                                               
                                                        'cat_id'        => 
$this->cat_id
+                                                                               
                                                        )
+                                                                               
)),
+                               'lang_id'       => lang('status'),
+                       );
+
+                       $table_add[] = array
+                       (
+                               'lang_add'                              => 
lang('add'),
+                               'lang_add_text' => lang('add a standard'),
+                               'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_status&entity_id='
 . $this->entity_id . '&cat_id=' . $this->cat_id),
+                               'lang_done'                             => 
lang('done'),
+                               'lang_done_text'        => lang('back to 
admin'),
+                               'done_action'                   => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.category&entity_id='
 . $this->entity_id . '&cat_id=' . $this->cat_id),
+                       );
+
+                       if(!$this->allrows)
+                       {
+                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
+                       }
+                       else
+                       {
+                               $record_limit   = $this->bo->total_records;
+                       }
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.list_status',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'query'                 
=>$this->query,
+                                               'entity_id'             
=>$this->entity_id,
+                                               'cat_id'                
=>$this->cat_id
+                       );
+
+                       $entity = 
$this->bo->read_single($this->entity_id,false);
+                       $category = 
$this->bo->read_single_category($this->entity_id,$this->cat_id);
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'lang_entity'                                   
=> lang('entity'),
+                               'entity_name'                                   
=> $entity['name'],
+                               'lang_category'                                 
=> lang('category'),
+                               'category_name'                                 
=> $category['name'],
+                               'links'                                         
        => $links,
+                               'allow_allrows'                                 
=> True,
+                               'allrows'                                       
        => $this->allrows,
+                               'start_record'                                  
=> $this->start,
+                               'record_limit'                                  
=> $record_limit,
+                               'num_records'                                   
=> count($entity_list),
+                               'all_records'                                   
=> $this->bo->total_records,
+                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data),
+                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
+                               'lang_searchfield_standardtext' => lang('Enter 
the search string. To show all entries, empty this field and press the SUBMIT 
button again'),
+                               'lang_searchbutton_standardtext'        => 
lang('Submit the search string'),
+                               'query'                                         
        => $this->query,
+                               'lang_search'                                   
=> lang('search'),
+                               'table_header_status'                   => 
$table_header,
+                               'values_status'                                 
=> $content,
+                               'table_add'                                     
        => $table_add
+                       );
+
+                       $appname                                                
= lang('entity');
+                       $function_msg                                   = 
lang('list status');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       //$this->save_sessiondata();
+                       return array('list_status' => $data);
+               }
+
+               function category()
+               {
+
+                       $entity_id      = 
get_var('entity_id',array('POST','GET'));
+
+                       $this->bocommon->xsl_add_file(array(
+                                                                               
'admin_entity',
+                                                                               
'nextmatchs',
+                                                                               
'menu',
+                                                                               
'search_field'));
+                       $links = $this->menu->links();
+
+                       $category_list = $this->bo->read_category($entity_id);
+
+                       if (isSet($category_list) AND is_array($category_list))
+                       {
+                               foreach($category_list as $entry)
+                               {
+                                       $content[] = array
+                                       (
+                                               'id'                            
                => $entry['id'],
+                                               'name'                          
                => $entry['name'],
+                                               'prefix'                        
                => $entry['prefix'],
+                                               'descr'                         
                => $entry['descr'],
+//                                             'link_status'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_status&cat_id='
 . $entry['id'] . '&entity_id=' . $entity_id),
+                                               'link_attribute'                
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_attribute&cat_id='
 . $entry['id'] . '&entity_id=' . $entity_id),
+                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_category&id='
 . $entry['id'] . '&entity_id=' . $entity_id),
+                                               'link_delete'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.delete&cat_id='
 . $entry['id'] . '&entity_id=' . $entity_id),
+                                               'lang_view_standardtext'        
=> lang('view the category'),
+                                               'lang_status_standardtext'      
=> lang('Status for the entity category'),
+                                               'lang_attribute_standardtext'   
=> lang('attributes for the entity category'),
+                                               'lang_edit_standardtext'        
=> lang('edit the standard'),
+                                               'lang_delete_standardtext'      
=> lang('delete the standard'),
+                                               'text_status'                   
=> lang('Status'),
+                                               'text_attribute'                
        => lang('Attributes'),
+                                               'text_edit'                     
                => lang('edit'),
+                                               'text_delete'                   
        => lang('delete')
+                                       );
+                               }
+                       }
+
+//html_print_r($content);
+
+                       $table_header[] = array
+                       (
+
+                               'lang_descr'            => lang('Descr'),
+                               'lang_prefix'           => lang('prefix'),
+//                             'lang_status'           => lang('Status'),
+                               'lang_attribute'        => lang('Attributes'),
+                               'lang_edit'                     => lang('edit'),
+                               'lang_delete'           => lang('delete'),
+                               'sort_id'       => 
$this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'id',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.category',
+                                                                               
                                                'entity_id' =>$entity_id,
+                                                                               
                                                'allrows'=>$this->allrows)
+                                                                               
)),
+                               'lang_id'       => lang('category id'),
+                               'sort_name'     => 
$this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'name',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.category',
+                                                                               
                                                'entity_id' =>$entity_id,
+                                                                               
                                                'allrows'=>$this->allrows)
+                                                                               
)),
+                               'lang_name'     => lang('Name'),
+                       );
+
+                       $table_add[] = array
+                       (
+                               'lang_add'                              => 
lang('add'),
+                               'lang_add_standardtext' => lang('add a 
category'),
+                               'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_category&entity_id='
 . $entity_id),
+                               'lang_done'                             => 
lang('done'),
+                               'lang_done_standardtext'        => lang('back 
to entity'),
+                               'done_action'                   => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.index')
+                       );
+
+                       $entity = $this->bo->read_single($entity_id,false);
+
+                       if(!$this->allrows)
+                       {
+                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
+                       }
+                       else
+                       {
+                               $record_limit   = $this->bo->total_records;
+                       }
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.category',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'query'                 
=>$this->query,
+                                               'entity_id'             
=>$entity_id
+                       );
+
+                       $data = array
+                       (
+                               'lang_entity'                                   
=> lang('entity'),
+                               'entity_name'                                   
=> $entity['name'],
+                               'links'                                         
        => $links,
+                               'allow_allrows'                                 
=> True,
+                               'allrows'                                       
        => $this->allrows,
+                               'start_record'                                  
=> $this->start,
+                               'record_limit'                                  
=> $record_limit,
+                               'num_records'                                   
=> count($category_list),
+                               'all_records'                                   
=> $this->bo->total_records,
+                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data),
+                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
+                               'lang_searchfield_standardtext' => lang('Enter 
the search string. To show all entries, empty this field and press the SUBMIT 
button again'),
+                               'lang_searchbutton_standardtext'        => 
lang('Submit the search string'),
+                               'query'                                         
        => $this->query,
+                               'lang_search'                                   
=> lang('search'),
+                               'table_header_category'                 => 
$table_header,
+                               'values_category'                               
=> $content,
+                               'table_add'                                     
        => $table_add
+                       );
+
+                       $appname                                                
= lang('entity');
+                       $function_msg                                   = 
lang('list entity type');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       //$this->save_sessiondata();
+                       return array('list_category' => $data);
+               }
+
+               function edit()
+               {
+                       $id     = get_var('id',array('POST','GET'));
+                       $values                 = 
get_var('values',array('POST'));
+                       $config = 
CreateObject('phpgwapi_config',$this->currentapp);
+
+                       $this->bocommon->xsl_add_file(array('admin_entity'));
+
+                       if ($values['save'])
+                       {
+                               if (!$values['name'])
+                               {
+                                       $receipt['error'][] = 
array('msg'=>lang('Name not entered!'));
+                               }
+
+                               if($id)
+                               {
+                                       $values['id']=$id;
+                                       $action='edit';
+                               }
+
+                               if (!$receipt['error'])
+                               {
+
+                                       $receipt = 
$this->bo->save($values,$action);
+                                       if(!$id)
+                                       {
+                                               $id=$receipt['id'];
+                                       }
+                                       $config->read_repository();
+
+                                       
if(!is_array($config->config_data['location_form']))
+                                       {
+                                               
$config->config_data['location_form'] = array();
+                                       }
+
+                                       if($values['location_form'])
+                                       {
+
+                                               
$config->config_data['location_form']['entity_' . $id] = 'entity_' . $id;
+
+                                       }
+                                       else
+                                       {
+                                               
unset($config->config_data['location_form']['entity_' . $id]);
+                                       }
+
+                                       $config->save_repository();
+                               }
+                               else
+                               {
+                                       $receipt['error'][] = array('msg'=> 
lang('Entity has NOT been saved'));
+                               }
+
+                       }
+
+
+                       if ($id)
+                       {
+                               $values = $this->bo->read_single($id);
+                               $function_msg = lang('edit standard');
+                               $action='edit';
+                       }
+                       else
+                       {
+                               $function_msg = lang('add entity');
+                               $action='add';
+                       }
+
+                       $include_list   = 
$this->bo->get_entity_list($values['lookup_entity']);
+                       $include_list_2 = 
$this->bo->get_entity_list_2($values['include_entity_for']);
+                       $include_list_3 = 
$this->bo->get_entity_list_3($values['start_entity_from']);
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.edit',
+                               'id'    => $id
+                       );
+//html_print_r($include_list);
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'lang_name_standardtext'                => 
lang('Enter a name of the standard'),
+                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
+                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.index'),
+                               'lang_id'                                       
        => lang('standard ID'),
+                               'lang_name'                                     
        => lang('Name'),
+                               'lang_descr'                                    
=> lang('Descr'),
+                               'lang_save'                                     
        => lang('save'),
+                               'lang_done'                                     
        => lang('done'),
+                               'value_id'                                      
        => $id,
+                               'value_name'                                    
=> $values['name'],
+                               'lang_id_standardtext'                  => 
lang('Enter the standard ID'),
+                               'lang_descr_standardtext'               => 
lang('Enter a description of the standard'),
+                               'lang_done_standardtext'                => 
lang('Back to the list'),
+                               'lang_save_standardtext'                => 
lang('Save the standard'),
+                               'type_id'                                       
        => $values['type_id'],
+                               'value_descr'                                   
=> $values['descr'],
+                               'lang_location_form'                    => 
lang('location form'),
+                               'value_location_form'                   => 
$values['location_form'],
+                               'lang_location_form_statustext' => lang('If 
this entity type is to be linked to a location'),
+                               'lang_include_in_location_form' => 
lang('include in location form'),
+                               'include_list'                                  
=> $include_list,
+                               'lang_include_statustext'               => 
lang('Which entity type is to show up in location forms'),
+                               'lang_include_this_entity'              => 
lang('include this entity'),
+                               'include_list_2'                                
=> $include_list_2,
+                               'lang_include_2_statustext'             => 
lang('Let this entity show up in location form'),
+                               'lang_start_this_entity'                => 
lang('start this entity'),
+                               'include_list_3'                                
=> $include_list_3,
+                               'lang_include_3_statustext'             => 
lang('Start this entity from'),
+                               'lang_select'                                   
=> lang('select'),
+                               'lang_documentation'                    => 
lang('documentation'),
+                               'value_documentation'                   => 
$values['documentation'],
+                               'lang_documentation_statustext' => lang('If 
this entity type is to be linked to documents'),
+                       );
+
+                       $appname                                                
= lang('entity');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('edit' => $data);
+               }
+
+               function edit_status()
+               {
+                       $id     = get_var('id',array('POST','GET'));
+                       $values                 = 
get_var('values',array('POST'));
+
+                       $this->bocommon->xsl_add_file(array('admin_entity'));
+
+                       if ($values['save'])
+                       {
+                               if (!$values['id'])
+                               {
+                                       $receipt['error'][] = 
array('msg'=>lang('ID not entered!'));
+                               }
+
+                               if($id)
+                               {
+                                       $values['id']=$id;
+                                       $action='edit';
+                               }
+
+                               if (!$receipt['error'])
+                               {
+                                       $receipt = 
$this->bo->save_status($values,$action);
+                                       if(!$id)
+                                       {
+                                               $id=$receipt['id'];
+                                       }
+                               }
+                               else
+                               {
+                                       $receipt['error'][] = array('msg'=> 
lang('Status has NOT been saved'));
+                               }
+
+                       }
+
+                       if ($id)
+                       {
+                               $values = $this->bo->read_single_status($id);
+                               $function_msg = lang('edit status');
+                               $action='edit';
+                       }
+                       else
+                       {
+                               $function_msg = lang('add status');
+                               $action='add';
+                       }
+
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.edit_status',
+                               'entity_id'             => $this->entity_id,
+                               'cat_id'                => $this->cat_id,
+                               'id'                    => $id
+                       );
+//html_print_r($link_data);
+
+                       $entity = 
$this->bo->read_single($this->entity_id,false);
+                       $category = 
$this->bo->read_single_category($this->entity_id,$this->cat_id);
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'lang_entity'                                   
=> lang('entity'),
+                               'entity_name'                                   
=> $entity['name'],
+                               'lang_category'                                 
=> lang('category'),
+                               'category_name'                                 
=> $category['name'],
+                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'lang_name_standardtext'                => 
lang('Enter a name of the standard'),
+                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
+                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_status&entity_id='
 . $this->entity_id . '&cat_id=' . $this->cat_id),
+                               'lang_id'                                       
        => lang('status ID'),
+                               'lang_descr'                                    
=> lang('Descr'),
+                               'lang_save'                                     
        => lang('save'),
+                               'lang_done'                                     
        => lang('done'),
+                               'value_id'                                      
        => $id,
+                               'lang_id_standardtext'                  => 
lang('Enter the status ID'),
+                               'lang_descr_standardtext'               => 
lang('Enter a description of the status'),
+                               'lang_done_standardtext'                => 
lang('Back to the list'),
+                               'lang_save_standardtext'                => 
lang('Save the status'),
+                               'value_descr'                                   
=> $values['descr']
+                       );
+
+                       $appname                                                
= lang('entity');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('edit_status' => $data);
+               }
+
+               function edit_category()
+               {
+                       $entity_id      = 
get_var('entity_id',array('POST','GET'));
+                       $id     = get_var('id',array('POST','GET'));
+                       $values                 = 
get_var('values',array('POST'));
+
+                       $this->bocommon->xsl_add_file(array('admin_entity'));
+
+                       if ($values['save'])
+                       {
+                               $values['entity_id']    = $entity_id;
+
+                               if (!$values['name'])
+                               {
+                                       $receipt['error'][] = 
array('msg'=>lang('Name not entered!'));
+                               }
+                               if (!$values['entity_id'])
+                               {
+                                       $receipt['error'][] = 
array('msg'=>lang('Entity not choosen'));
+                               }
+
+                               if($id)
+                               {
+                                       $values['id']=$id;
+                                       $action='edit';
+                               }
+
+                               if (!$receipt['error'])
+                               {
+                                       $receipt = 
$this->bo->save_category($values,$action);
+                                       if(!$id)
+                                       {
+                                               $id=$receipt['id'];
+                                       }
+                               }
+                               else
+                               {
+                                       $receipt['error'][] = array('msg'=> 
lang('Category has NOT been saved'));
+                               }
+
+                       }
+
+                       if ($id)
+                       {
+                               $values = 
$this->bo->read_single_category($entity_id,$id);
+                               $function_msg = lang('edit category');
+                               $action='edit';
+                       }
+                       else
+                       {
+                               $function_msg = lang('add category');
+                               $action='add';
+                       }
+
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.edit_category',
+                               'entity_id' =>$entity_id,
+                               'id'    => $id
+                       );
+//html_print_r($link_data);
+
+                       $entity = $this->bo->read_single($entity_id,false);
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'lang_entity'                                   
=> lang('entity'),
+                               'entity_name'                                   
=> $entity['name'],
+                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'lang_prefix_standardtext'              => 
lang('Enter a standard prefix for the id'),
+                               'lang_name_standardtext'                => 
lang('Enter a name of the standard'),
+
+                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
+                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.category&entity_id='
 . $entity_id),
+                               'lang_id'                                       
        => lang('Category'),
+                               'lang_name'                                     
        => lang('Name'),
+                               'lang_descr'                                    
=> lang('Descr'),
+                               'lang_prefix'                                   
=> lang('Prefix'),
+                               'lang_save'                                     
        => lang('save'),
+                               'lang_done'                                     
        => lang('done'),
+                               'value_id'                                      
        => $id,
+                               'value_name'                                    
=> $values['name'],
+                               'value_prefix'                                  
=> $values['prefix'],
+                               'lang_id_standardtext'                  => 
lang('Enter the standard ID'),
+                               'lang_descr_standardtext'               => 
lang('Enter a description of the standard'),
+                               'lang_done_standardtext'                => 
lang('Back to the list'),
+                               'lang_save_standardtext'                => 
lang('Save the standard'),
+                               'type_id'                                       
        => $values['type_id'],
+                               'value_descr'                                   
=> $values['descr'],
+                               'lang_lookup_tenant'                    => 
lang('lookup tenant'),
+                               'value_lookup_tenant'                   => 
$values['lookup_tenant'],
+                               'lang_lookup_tenant_statustext' => lang('If 
this entity type is to look up tenants'),
+                               'lang_location_level'                   => 
lang('location level'),
+                               'location_level_list'                   => 
$this->bo->get_location_level_list($values['location_level']),
+                               'lang_location_level_statustext'        => 
lang('select location level'),
+                               'lang_no_location_level'                => 
lang('None'),
+                               'lang_tracking'                                 
=> lang('tracking'),
+                               'value_tracking'                                
=> $values['tracking'],
+                               'lang_tracking_statustext'              => 
lang('If this entity type is to be tracket in ticket list'),
+                               'lang_fileupload'                               
=> lang('Enable file upload'),
+                               'value_fileupload'                              
=> $values['fileupload'],
+                               'lang_fileupload_statustext'    => lang('If 
files can be uploaded for this category'),
+                               'lang_loc_link'                                 
=> lang('Link from location'),
+                               'value_loc_link'                                
=> $values['loc_link'],
+                               'lang_loc_link_statustext'              => 
lang('Enable link from location detail')
+                       );
+
+                       $appname                                                
= lang('entity');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('edit' => $data);
+               }
+
+               function delete()
+               {
+                       $entity_id              = 
get_var('entity_id',array('POST','GET'));
+                       $cat_id         = get_var('cat_id',array('POST','GET'));
+                       $attrib_id              = 
get_var('attrib_id',array('POST','GET'));
+                       $status_id              = 
get_var('status_id',array('POST','GET'));
+                       $confirm        = get_var('confirm',array('POST'));
+
+                       if($attrib_id)
+                       {
+                               $function='list_attribute';
+                       }
+                       else
+                       {
+                               if($cat_id)
+                               {
+                                       if($status_id)
+                                       {
+                                               $function='list_status';
+                                       }
+                                       else
+                                       {
+                                               $function='category';
+                                       }
+                               }
+                               else
+                               {
+                                       $function='index';
+                               }
+                       }
+
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.'.$function,
+                               'cat_id' => $cat_id,
+                               'entity_id' => $entity_id,
+                               'attrib_id' => $attrib_id,
+                               'status_id' => $status_id
+                       );
+
+                       $delete_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.delete',
+                               'cat_id' => $cat_id,
+                               'entity_id' => $entity_id,
+                               'attrib_id' => $attrib_id,
+                               'status_id' => $status_id
+                       );
+
+                       if (get_var('confirm',array('POST')))
+                       {
+                               
$this->bo->delete($cat_id,$entity_id,$attrib_id,$status_id);
+                               Header('Location: ' . 
$this->bocommon->link('/index.php',$link_data));
+                       }
+
+                       $this->bocommon->xsl_add_file(array('app_delete'));
+
+                       $data = array
+                       (
+                               'done_action'                   => 
$this->bocommon->link('/index.php',$link_data),
+                               'delete_action'                 => 
$this->bocommon->link('/index.php',$delete_data),
+                               'lang_confirm_msg'              => lang('do you 
really want to delete this entry'),
+                               'lang_yes'                              => 
lang('yes'),
+                               'lang_yes_standardtext' => lang('Delete the 
entry'),
+                               'lang_no_standardtext'  => lang('Back to the 
list'),
+                               'lang_no'                               => 
lang('no')
+                       );
+
+                       $appname                                                
= lang('entity');
+                       $function_msg                                   = 
lang('delete entity type');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('delete' => $data);
+               }
+
+
+               function list_attribute()
+               {
+                       $entity_id      = $this->entity_id;
+                       $cat_id = $this->cat_id;
+                       $id     = get_var('id',array('POST','GET'));
+                       $resort = get_var('resort',array('POST','GET'));
+
+                       $this->bocommon->xsl_add_file(array(
+                                                                               
'admin_entity',
+                                                                               
'nextmatchs',
+                                                                               
'search_field'));
+
+                       if($resort)
+                       {
+                               $this->bo->resort_attrib($id,$resort);
+                       }
+                       $attrib_list = 
$this->bo->read_attrib($entity_id,$cat_id);
+
+                       if (isset($attrib_list) AND is_array($attrib_list))
+                       {
+                               foreach($attrib_list as $entry)
+                               {
+
+                                       $content[] = array
+                                       (
+                                               'name'                          
                => $entry['name'],
+                                               'datatype'                      
                => $entry['datatype'],
+                                               'column_name'                   
        => $entry['column_name'],
+                                               'input_text'                    
        => $entry['input_text'],
+                                               'sorting'                       
                => $entry['attrib_sort'],
+                                               'link_up'                       
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_attribute&resort=up&entity_id='
 . $entity_id . '&cat_id=' . $cat_id . '&id=' . $entry['id'] . '&allrows=' . 
$this->allrows),
+                                               'link_down'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_attribute&resort=down&entity_id='
 . $entity_id . '&cat_id=' . $cat_id . '&id=' . $entry['id'] . '&allrows=' . 
$this->allrows),
+                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_attrib&entity_id='
 . $entity_id . '&cat_id=' . $cat_id . '&id=' . $entry['id']),
+                                               'link_delete'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.delete&entity_id='
 . $entity_id . '&cat_id=' . $cat_id . '&attrib_id=' . $entry['id']),
+                                               'lang_up_text'                  
        => lang('shift up'),
+                                               'lang_down_text'                
        => lang('shift down'),
+                                               'lang_edit_text'                
        => lang('edit the attrib'),
+                                               'lang_delete_text'              
        => lang('delete the attrib'),
+                                               'text_attribute'                
        => lang('Attributes'),
+                                               'text_up'                       
                => lang('up'),
+                                               'text_down'                     
                => lang('down'),
+                                               'text_edit'                     
                => lang('edit'),
+                                               'text_delete'                   
        => lang('delete')
+                                       );
+                               }
+                       }
+
+//html_print_r($content);
+
+                       $table_header[] = array
+                       (
+                               'lang_descr'            => lang('Descr'),
+                               'lang_datatype'         => lang('Datatype'),
+                               'lang_sorting'          => lang('sorting'),
+                               'lang_edit'                     => lang('edit'),
+                               'lang_delete'           => lang('delete'),
+                               'sort_name'     => 
$this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'column_name',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.list_attribute',
+                                                                               
                                                        'entity_id'     
=>$entity_id,
+                                                                               
                                                        'cat_id'        
=>$cat_id,
+                                                                               
                                                'allrows'=>$this->allrows)
+                                                                               
)),
+                               'sort_sorting'  => 
$this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'attrib_sort',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiadmin_entity.list_attribute',
+                                                                               
                                                        'entity_id'     
=>$entity_id,
+                                                                               
                                                        'cat_id'        
=>$cat_id,
+                                                                               
                                                'allrows'=>$this->allrows)
+                                                                               
)),
+                               'lang_name'     => lang('Name'),
+                       );
+
+                       $table_add[] = array
+                       (
+                               'lang_add'                              => 
lang('add'),
+                               'lang_add_attribtext'   => lang('add a attrib'),
+                               'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.edit_attrib&entity_id='.$entity_id
 . '&cat_id=' . $cat_id),
+                               'lang_done'                             => 
lang('done'),
+                               'lang_done_attribtext'  => lang('back to 
admin'),
+                               'done_action'                   => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.category&entity_id='.$entity_id),
+                       );
+
+                       if(!$this->allrows)
+                       {
+                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
+                       }
+                       else
+                       {
+                               $record_limit   = $this->bo->total_records;
+                       }
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.list_attribute',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'query'                 
=>$this->query,
+                                               'entity_id'             
=>$entity_id,
+                                               'cat_id'                
=>$cat_id
+                       );
+
+                       $entity = $this->bo->read_single($entity_id,false);
+                       $category = 
$this->bo->read_single_category($entity_id,$cat_id);
+
+                       $data = array
+                       (
+                               'lang_entity'                                   
=> lang('entity'),
+                               'entity_name'                                   
=> $entity['name'],
+                               'lang_category'                                 
=> lang('category'),
+                               'category_name'                                 
=> $category['name'],
+                               'allow_allrows'                                 
=> True,
+                               'allrows'                                       
        => $this->allrows,
+                               'start_record'                                  
=> $this->start,
+                               'record_limit'                                  
=> $record_limit,
+                               'start_record'                                  
=> $this->start,
+                               'num_records'                                   
=> count($attrib_list),
+                               'all_records'                                   
=> $this->bo->total_records,
+                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data),
+                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
+                               'lang_searchfield_attribtext'   => lang('Enter 
the search string. To show all entries, empty this field and press the SUBMIT 
button again'),
+                               'lang_searchbutton_attribtext'  => lang('Submit 
the search string'),
+                               'query'                                         
        => $this->query,
+                               'lang_search'                                   
=> lang('search'),
+                               'table_header_attrib'                   => 
$table_header,
+                               'values_attrib'                                 
=> $content,
+                               'table_add'                                     
        => $table_add
+                       );
+
+                       $appname                                                
= lang('attribute');
+                       $function_msg                                   = 
lang('list entity attribute');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       //$this->save_sessiondata();
+                       return array('list_attribute' => $data);
+               }
+
+               function edit_attrib()
+               {
+                       $entity_id      = 
get_var('entity_id',array('POST','GET'));
+                       $cat_id         = get_var('cat_id',array('POST','GET'));
+                       $id                     = 
get_var('id',array('POST','GET'));
+                       $values         = get_var('values',array('POST'));
+
+                       $this->bocommon->xsl_add_file(array('admin_entity'));
+
+                       if ($values['save'])
+                       {
+                               if($id)
+                               {
+                                       $values['id']=$id;
+                                       $action='edit';
+                               }
+
+                               $values['entity_id']=$entity_id;
+                               $values['cat_id']=$cat_id;
+
+                               if (!$values['column_name'])
+                               {
+                                       $receipt['error'][] = 
array('msg'=>lang('Column name not entered!'));
+                               }
+
+                               if (!$values['input_text'])
+                               {
+                                       $receipt['error'][] = 
array('msg'=>lang('Input text not entered!'));
+                               }
+                               if (!$values['statustext'])
+                               {
+                                       $receipt['error'][] = 
array('msg'=>lang('Statustext not entered!'));
+                               }
+
+                               if (!$values['entity_id'])
+                               {
+                                       $receipt['error'][] = 
array('msg'=>lang('entity type not choosen!'));
+                               }
+
+                               if (!$values['column_info']['type'])
+                               {
+                                       $receipt['error'][] = 
array('msg'=>lang('Datatype type not choosen!'));
+                               }
+
+                               
if(!ctype_digit($values['column_info']['precision']))
+                               {
+                                       
$receipt['error'][]=array('msg'=>lang('Please enter precision as integer !'));
+                                       
unset($values['column_info']['precision']);
+                               }
+
+                               
if(!ctype_digit($values['column_info']['scale']))
+                               {
+                                       
$receipt['error'][]=array('msg'=>lang('Please enter scale as integer !'));
+                                       unset($values['column_info']['scale']);
+                               }
+
+                               if (!$values['column_info']['nullable'])
+                               {
+                                       $receipt['error'][] = 
array('msg'=>lang('Nullable not choosen!'));
+                               }
+
+
+                               if (!$receipt['error'])
+                               {
+
+                                       $receipt = 
$this->bo->save_attrib($values,$action);
+
+                                       if(!$id)
+                                       {
+                                               $id=$receipt['id'];
+                                       }
+                               }
+                               else
+                               {
+                                       $receipt['error'][] = array('msg'       
=> lang('Attribute has NOT been saved'));
+                               }
+
+                       }
+
+                       if ($id)
+                       {
+                               $values = 
$this->bo->read_single_attrib($entity_id,$cat_id,$id);
+                               $type_name=$values['type_name'];
+                               $function_msg = lang('edit attribute'). ' ' . 
lang($type_name);
+                               $action='edit';
+                       }
+                       else
+                       {
+                               $function_msg = lang('add attribute');
+                               $action='add';
+                       }
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiadmin_entity.edit_attrib',
+                               'entity_id'     => $entity_id,
+                               'cat_id'        => $cat_id,
+                               'id'    => $id
+                       );
+
+                       if($values['column_info']['type']=='R' || 
$values['column_info']['type']=='CH' || $values['column_info']['type']=='LB')
+                       {
+                               $multiple_choice= True;
+                       }
+
+//html_print_r($values);
+
+                       $entity = $this->bo->read_single($entity_id,false);
+                       $category = 
$this->bo->read_single_category($entity_id,$cat_id);
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'lang_entity'                                   
=> lang('entity'),
+                               'entity_name'                                   
=> $entity['name'],
+                               'lang_category'                                 
=> lang('category'),
+                               'category_name'                                 
=> $category['name'],
+
+                               'lang_choice'                           => 
lang('Choice'),
+                               'lang_new_value'                        => 
lang('New value'),
+                               'lang_new_value_statustext'     => lang('New 
value for mulitple choice'),
+                               'multiple_choice'                       => 
$multiple_choice,
+                               'value_choice'                          => 
$values['choice'],
+                               'lang_delete_value'                     => 
lang('Delete value'),
+                               'lang_value'                            => 
lang('value'),
+                               'lang_delete_choice_statustext'=> lang('Delete 
this value from the list of multiple choice'),
+
+                               'msgbox_data'                           => 
$GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'form_action'                           => 
$this->bocommon->link('/index.php',$link_data),
+                               'done_action'                           => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiadmin_entity.list_attribute&entity_id='.$entity_id
 . '&cat_id='.$cat_id),
+                               'lang_id'                                       
=> lang('Attribute ID'),
+                               'lang_entity_type'                      => 
lang('Entity type'),
+                               'lang_no_entity_type'           => lang('No 
entity type'),
+                               'lang_save'                                     
=> lang('save'),
+                               'lang_done'                                     
=> lang('done'),
+                               'value_id'                                      
=> $id,
+
+                               'lang_column_name'                              
=> lang('Column name'),
+                               'value_column_name'                             
=> $values['column_name'],
+                               'lang_column_name_statustext'   => lang('enter 
the name for the column'),
+
+                               'lang_input_text'                               
=> lang('input text'),
+                               'value_input_text'                              
=> $values['input_text'],
+                               'lang_input_name_statustext'    => lang('enter 
the input text for records'),
+
+                               'lang_id_attribtext'            => lang('Enter 
the attribute ID'),
+                               'lang_entity_statustext'        => lang('Select 
a entity type'),
+
+                               'lang_statustext'                       => 
lang('Statustext'),
+                               'lang_statustext_attribtext'=> lang('Enter a 
statustext for the inputfield in forms'),
+                               'value_statustext'                      => 
$values['statustext'],
+
+                               'lang_done_attribtext'          => lang('Back 
to the list'),
+                               'lang_save_attribtext'          => lang('Save 
the attribute'),
+
+                               'lang_datatype'                         => 
lang('Datatype'),
+                               'lang_datatype_statustext'      => lang('Select 
a datatype'),
+                               'lang_no_datatype'                      => 
lang('No datatype'),
+                               'datatype_list'                         => 
$this->bocommon->select_datatype($values['column_info']['type']),
+
+                               'lang_precision'                        => 
lang('Precision'),
+                               'lang_precision_statustext'     => lang('enter 
the record length'),
+                               'value_precision'                       => 
$values['column_info']['precision'],
+
+                               'lang_scale'                            => 
lang('scale'),
+                               'lang_scale_statustext'         => lang('enter 
the scale if type is decimal'),
+                               'value_scale'                           => 
$values['column_info']['scale'],
+
+                               'lang_default'                          => 
lang('default'),
+                               'lang_default_statustext'       => lang('enter 
the default value'),
+                               'value_default'                         => 
$values['column_info']['default'],
+
+                               'lang_nullable'                         => 
lang('Nullable'),
+                               'lang_nullable_statustext'      => lang('Chose 
if this column is nullable'),
+                               'lang_select_nullable'          => lang('Select 
nullable'),
+                               'nullable_list'                         => 
$this->bocommon->select_nullable($values['column_info']['nullable']),
+                               'value_lookup_form'                     => 
$values['lookup_form'],
+                               'lang_lookup_form'                              
=> lang('show in lookup forms'),
+                               'lang_lookup_form_statustext'                   
=> lang('check to show this attribue in lookup forms'),
+                               'value_list'                    => 
$values['list'],
+                               'lang_list'                             => 
lang('show in list'),
+                               'lang_list_statustext'                  => 
lang('check to show this attribute in entity list')
+                       );
+//html_print_r($data);
+
+                       $appname                                                
= lang('entity');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('edit_attrib' => $data);
+               }
+
+       }
+?>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]