mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
738 lines
26 KiB
PHP
738 lines
26 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare - InfoLog *
|
|
* http://www.phpgroupware.org *
|
|
* Written by Ralf Becker <RalfBecker@outdoor-training.de> *
|
|
* originaly based on todo written by Joseph Engo <jengo@phpgroupware.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. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
class uiinfolog // UI - User Interface - HTML
|
|
{
|
|
var $public_functions = array
|
|
(
|
|
'index' => True,
|
|
'edit' => True,
|
|
'delete' => True,
|
|
'admin' => True,
|
|
'hook_view' => True,
|
|
'writeLangFile' => True
|
|
);
|
|
var $icons;
|
|
|
|
function uiinfolog( )
|
|
{
|
|
$this->bo = CreateObject('infolog.boinfolog');
|
|
|
|
$this->icons = array(
|
|
'type' => array(
|
|
'task' => 'task.gif', 'task_alt' => 'Task',
|
|
'phone' => 'phone.gif', 'phone_alt' => 'Phonecall',
|
|
'note' => 'note.gif', 'note_alt' => 'Note',
|
|
'confirm' => 'confirm.gif', 'confirm_alt' => 'Confirmation',
|
|
'reject' => 'reject.gif', 'reject_alt' => 'Reject',
|
|
'email' => 'email.gif', 'email_alt' => 'Email' ),
|
|
'action' => array(
|
|
'new' => 'new.gif', 'new_alt' => 'Add Sub',
|
|
'view' => 'view.gif', 'view_alt' => 'View Subs',
|
|
'parent' => 'parent.gif', 'parent_alt' => 'View other Subs',
|
|
'edit' => 'edit.gif', 'edit_alt' => 'Edit',
|
|
'addfile' => 'addfile.gif', 'addfile_alt' => 'Add a file',
|
|
'delete' => 'delete.gif', 'delete_alt' => 'Delete' ),
|
|
'status' => array(
|
|
'billed' => 'billed.gif', 'billed_alt' => 'billed',
|
|
'done' => 'done.gif', 'done_alt' => 'done',
|
|
'will-call' => 'will-call.gif', 'will-call_alt' => 'will-call',
|
|
'call' => 'call.gif', 'call_alt' => 'call',
|
|
'ongoing' => 'ongoing.gif', 'ongoing_alt' => 'ongoing',
|
|
'offer' => 'offer.gif', 'offer_alt' => 'offer' )
|
|
);
|
|
|
|
$this->filters = array(
|
|
'none' => 'no Filter',
|
|
'done' => 'done',
|
|
'own' => 'own',
|
|
'own-open-today' => 'own open',
|
|
'own-open-overdue' => 'own overdue',
|
|
'own-upcoming' => 'own upcoming',
|
|
'open-today' => 'open',
|
|
'open-overdue' => 'overdue',
|
|
'upcoming' => 'upcoming'
|
|
);
|
|
|
|
$this->messages = array(
|
|
'edit' => 'InfoLog - Edit',
|
|
'add' => 'InfoLog - New',
|
|
'add_sub' => 'InfoLog - New Subproject',
|
|
'sp' => '- Subprojects from',
|
|
're' => 'Re:'
|
|
);
|
|
$this->link = &$this->bo->link;
|
|
|
|
$this->tmpl = CreateObject('etemplate.etemplate');
|
|
$this->html = &$this->tmpl->html;
|
|
|
|
$this->tz_offset = $GLOBALS['phpgw_info']['user']['preferences']['common']['tz_offset'];
|
|
|
|
$this->user = $GLOBALS['phpgw_info']['user']['account_id'];
|
|
}
|
|
|
|
function get_info($info,&$readonlys,$action='',$action_id='')
|
|
{
|
|
if (!is_array($info))
|
|
{
|
|
$info = $this->bo->read($info);
|
|
}
|
|
$id = $info['info_id'];
|
|
$done = $info['info_status'] == 'done' || $info['info_status'] == 'billed';
|
|
$info['sub_class'] = $info['info_pri'] . ($done ? '_done' : '');
|
|
if (!$done && $info['info_enddate'] < time()+60*60*$this->tz_offset)
|
|
{
|
|
$info['end_class'] = 'overdue';
|
|
}
|
|
$info['info_anz_subs'] = $this->bo->anzSubs($id);
|
|
$this->bo->link_id2from($info,$action,$action_id); // unset from for $action:$action_id
|
|
|
|
$readonlys["edit[$id]"] = !$this->bo->check_access($id,PHPGW_ACL_EDIT);
|
|
$readonlys["edit_status[$id]"] = !($this->bo->check_access($id,PHPGW_ACL_EDIT) || $info['info_responsible'] == $this->user);
|
|
$readonlys["delete[$id]"] = !$this->bo->check_access($id,PHPGW_ACL_DELETE);
|
|
$readonlys["sp[$id]"] = !$this->bo->check_access($id,PHPGW_ACL_ADD);
|
|
$readonlys["view[$id]"] = $info['info_anz_subs'] < 1;
|
|
$readonlys['view[0]'] = True; // no parent
|
|
|
|
$show_links = $GLOBALS['phpgw_info']['user']['preferences']['infolog']['show_links'];
|
|
|
|
if ($show_links != 'none' && ($links = $this->link->get_links('infolog',$info['info_id'])))
|
|
{
|
|
foreach ($links as $link)
|
|
{
|
|
if ($link['link_id'] != $info['info_link_id'] &&
|
|
($link['app'] != $action || $link['id'] != $action_id) &&
|
|
($show_links == 'all' || ($show_links == 'links') === ($link['app'] != $this->link->vfs_appname)))
|
|
{
|
|
$info['filelinks'][] = $link;
|
|
}
|
|
}
|
|
}
|
|
$info['info_type_label'] = $this->bo->enums['type'][$info['info_type']];
|
|
$info['info_status_label'] = $this->bo->status[$info['info_type']][$info['info_status']];
|
|
|
|
return $info;
|
|
}
|
|
|
|
function save_sessiondata($values)
|
|
{
|
|
$for = @$values['session_for'] ? $values['session_for'] : @$this->called_by;
|
|
//echo "<p>$for: uiinfolog::save_sessiondata(".print_r($values,True).") called_by='$this->called_by'</p>\n";
|
|
$GLOBALS['phpgw']->session->appsession($for.'session_data','infolog',array(
|
|
'search' => $values['search'],
|
|
'start' => $values['start'],
|
|
'filter' => $values['filter'],
|
|
'cat_id' => $values['cat_id'],
|
|
'order' => $values['order'],
|
|
'sort' => $values['sort'],
|
|
'col_filter' => $values['col_filter'],
|
|
'session_for' => $for
|
|
));
|
|
}
|
|
|
|
function read_sessiondata()
|
|
{
|
|
$values = $GLOBALS['phpgw']->session->appsession(@$this->called_by.'session_data','infolog');
|
|
if (!@$values['session_for'] && $this->called_by)
|
|
{
|
|
$values['session_for'] = $this->called_by;
|
|
$this->save_sessiondata($values);
|
|
}
|
|
//echo "<p>$this->called_by: uiinfolog::read_sessiondata() = ".print_r($values,True)."</p>\n";
|
|
return $values;
|
|
}
|
|
|
|
function get_rows($query,&$rows,&$readonlys)
|
|
{
|
|
//echo "<p>uiinfolog.get_rows(start=$query[start],search='$query[search]',filter='$query[filter]',cat_id=$query[cat_id],action='$query[action]/$query[action_id]',col_filter=".print_r($query['col_filter'],True).")</p>\n";
|
|
$this->save_sessiondata($query);
|
|
|
|
$ids = $this->bo->search($query);
|
|
|
|
if (!is_array($ids))
|
|
{
|
|
$ids = array( );
|
|
}
|
|
$rows = array( $query['total'] );
|
|
$readonlys = array();
|
|
foreach($ids as $id => $info)
|
|
{
|
|
$rows[] = $this->get_info($info,$readonlys,$query['action'],$query['action_id']);
|
|
}
|
|
//echo "<p>readonlys = "; _debug_array($readonlys);
|
|
//echo "rows=<pre>".print_r($rows,True)."</pre>\n";
|
|
reset($rows);
|
|
|
|
return $query['total'];
|
|
}
|
|
|
|
function index($values = 0,$action='',$action_id='',$referer=0,$extra_app_header=False,$return_html=False)
|
|
{
|
|
$referer = is_array($values) ? $values['referer'] : $referer;
|
|
//echo "<p>uiinfolog::index(action='$action/$action_id',referer='$referer/$values[referer]') values=\n"; _debug_array($values);
|
|
if (!is_array($values))
|
|
{
|
|
$values = array('nm' => $this->read_sessiondata());
|
|
if (isset($_GET['filter']))
|
|
{
|
|
$values['nm']['filter'] = $_GET['filter']; // infolog/index.php sets defaultFilter that way
|
|
}
|
|
if (!isset($values['nm']['order']) || !$values['nm']['order'])
|
|
{
|
|
$values['nm']['order'] = 'info_datemodified';
|
|
$values['nm']['sort'] = 'DESC';
|
|
}
|
|
}
|
|
if ($action == '')
|
|
{
|
|
$action = $values['action'] ? $values['action'] : get_var('action',array('POST','GET'));
|
|
$action_id = $values['action_id'] ? $values['action_id'] : get_var('action_id',array('POST','GET'));
|
|
}
|
|
if ($values['nm']['add'])
|
|
{
|
|
$values['add'] = $values['nm']['add'];
|
|
unset($values['nm']['add']);
|
|
}
|
|
if ($values['add'] || $values['cancel'] || isset($values['nm']['rows']) || isset($values['main']))
|
|
{
|
|
if ($values['add'])
|
|
{
|
|
list($type) = each($values['add']);
|
|
return $this->edit(0,$action,$action_id,$type,$referer);
|
|
}
|
|
else
|
|
{
|
|
list($do,$do_id) = isset($values['main']) ? each($values['main']) : @each($values['nm']['rows']);
|
|
list($do_id) = @each($do_id);
|
|
//echo "<p>infolog::index: do='$do/$do_id', referer="; _debug_array($referer);
|
|
switch($do)
|
|
{
|
|
case 'edit':
|
|
case 'edit_status':
|
|
return $this->edit($do_id,$action,$action_id,'',$referer);
|
|
case 'delete':
|
|
return $this->delete($do_id,$referer);
|
|
case 'sp':
|
|
return $this->edit(0,'sp',$do_id,'',$referer);
|
|
case 'view':
|
|
$value = array();
|
|
$action = 'sp';
|
|
$action_id = $do_id;
|
|
break;
|
|
default:
|
|
$value = array();
|
|
$action = '';
|
|
$action_id = 0;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$this->save_sessiondata($values['nm']);
|
|
}
|
|
switch ($action)
|
|
{
|
|
case 'sp':
|
|
if (!$this->bo->read($action_id))
|
|
{
|
|
$action = '';
|
|
$action_id = 0;
|
|
break;
|
|
}
|
|
$values['main'][1] = $this->get_info($action_id,$readonlys['main']);
|
|
break;
|
|
}
|
|
$readonlys['cancel'] = $action != 'sp';
|
|
|
|
$this->tmpl->read('infolog.index');
|
|
|
|
$values['nm']['options-filter'] = $this->filters;
|
|
$values['nm']['get_rows'] = 'infolog.uiinfolog.get_rows';
|
|
$values['nm']['no_filter2'] = True;
|
|
$values['nm']['header_right'] = 'infolog.index.header_right';
|
|
if ($extra_app_header)
|
|
{
|
|
$values['nm']['header_left'] = 'infolog.index.header_left';
|
|
}
|
|
$values['nm']['bottom_too'] = True;
|
|
$persist['action'] = $values['nm']['action'] = $action;
|
|
$persist['action_id'] = $values['nm']['action_id'] = $action_id;
|
|
$persist['referer'] = $referer;
|
|
|
|
$all_stati = array();
|
|
foreach($this->bo->status as $typ => $stati)
|
|
{
|
|
if ($typ != 'defaults') $all_stati += $stati;
|
|
}
|
|
$GLOBALS['phpgw_info']['flags']['params']['manual'] = array('page' => 'ManualInfologIndex');
|
|
|
|
return $this->tmpl->exec('infolog.uiinfolog.index',$values,array(
|
|
'info_type' => $this->bo->enums['type'],
|
|
'info_status' => $all_stati
|
|
),$readonlys,$persist,'',$return_html);
|
|
}
|
|
|
|
function delete($values=0,$referer='')
|
|
{
|
|
$info_id = is_array($values) ? $values['info_id'] : $values;
|
|
$referer = is_array($values) ? $values['referer'] : $referer;
|
|
|
|
if (is_array($values) || $info_id <= 0)
|
|
{
|
|
if ($values['delete'] && $info_id > 0 && $this->bo->check_access($info_id,PHPGW_ACL_DELETE))
|
|
{
|
|
$this->bo->delete($info_id,$values['remove_subs'],$values['info_id_parent']);
|
|
}
|
|
return $referer ? $this->tmpl->location($referer) : $this->index();
|
|
}
|
|
$readonlys = $values = array();
|
|
$values['main'][1] = $this->get_info($info_id,$readonlys['main']);
|
|
|
|
$this->tmpl->read('infolog.delete');
|
|
|
|
$values['main']['no_actions'] = True;
|
|
$values['remove_subs'] = $this->bo->anzSubs($info_id) > 0;
|
|
$persist['info_id'] = $info_id;
|
|
$persist['referer'] = $referer;
|
|
$persist['info_id_parent'] = $values['main'][1]['info_id_parent'];
|
|
|
|
$GLOBALS['phpgw_info']['flags']['app_header'] = lang('InfoLog').' - '.lang('Delete');
|
|
$GLOBALS['phpgw_info']['flags']['params']['manual'] = array('page' => 'ManualInfologDelete');
|
|
|
|
$this->tmpl->exec('infolog.uiinfolog.delete',$values,'',$readonlys,$persist);
|
|
}
|
|
|
|
/*!
|
|
@function edit
|
|
@syntax edit( $content=0,$action='',$action_id=0,$type='',$referer='' )
|
|
@author ralfbecker
|
|
@abstract Edit/Create an InfoLog Entry
|
|
@param $content Content from the eTemplate Exec call or info_id on inital call
|
|
@param $action Name of an app of 'sp' for a infolog-sub
|
|
@param $action_id Id of app-entry to which a link is created
|
|
@param $type Type of log-entry: note,todo,task
|
|
@param $referer array with param/get-vars of the refering page
|
|
*/
|
|
function edit($content = 0,$action = '',$action_id=0,$type='',$referer='')
|
|
{
|
|
if (is_array($content))
|
|
{
|
|
//echo "uiinfolog::edit: content="; _debug_array($content);
|
|
$info_id = $content['info_id'];
|
|
$action = $content['action'];
|
|
$action_id = $content['action_id'];
|
|
$referer = $content['referer'];
|
|
|
|
if (isset($content['link_to']['primary']))
|
|
{
|
|
$content['info_link_id'] = $content['link_to']['primary'];
|
|
}
|
|
if ($content['save'] || $content['delete'] || $content['cancel'])
|
|
{
|
|
if ($content['save'] && $info_id)
|
|
{
|
|
if (!($edit_acl = $this->bo->check_access($info_id,PHPGW_ACL_EDIT)))
|
|
{
|
|
$old = $this->bo->read($info_id);
|
|
$status_only = $old['info_responsible'] == $this->user;
|
|
}
|
|
}
|
|
if ($content['save'] && (!$info_id || $edit_acl || $status_only))
|
|
{
|
|
if (strstr($content['info_link_id'],':') !== False)
|
|
{
|
|
$info_link_id = $content['info_link_id'];
|
|
$content['info_link_id'] = 0; // as field has to be int
|
|
}
|
|
if ($status_only)
|
|
{
|
|
$content = array(
|
|
'info_id' => $content['info_id'],
|
|
'info_status' => $content['info_status']
|
|
);
|
|
}
|
|
$this->bo->write($content);
|
|
|
|
if (!$info_id && is_array($content['link_to']['to_id'])) // writing link for new entry
|
|
{
|
|
$content['info_id'] = $this->bo->so->data['info_id'];
|
|
$this->link->link('infolog',$content['info_id'],$content['link_to']['to_id']);
|
|
if ($info_link_id)
|
|
{
|
|
list($app,$id) = explode(':',$info_link_id);
|
|
$link = $this->link->get_link('infolog',$content['info_id'],$app,$id);
|
|
$content['info_link_id'] = $link['link_id'];
|
|
|
|
$this->bo->write(array(
|
|
'info_id' => $content['info_id'],
|
|
'info_link_id' => $content['info_link_id'],
|
|
'info_from' => $content['info_from']
|
|
),False);
|
|
}
|
|
}
|
|
}
|
|
elseif ($content['delete'] && $info_id > 0)
|
|
{
|
|
if (!$referer && $action) $referer = array(
|
|
'menuaction' => 'infolog.uiinfolog.index',
|
|
'action' => $action,
|
|
'action_id' => $action_id
|
|
);
|
|
return $this->delete($info_id,$referer); // checks ACL first
|
|
}
|
|
return $referer ? $this->tmpl->location($referer) : $this->index(0,$action,$action_id);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//echo "<p>uiinfolog::edit: info_id=$info_id, action='$action', action_id='$action_id', type='$type', referer='$referer'</p>\n";
|
|
$action = $action ? $action : get_var('action', array('POST','GET'));
|
|
$action_id = $action_id ? $action_id : get_var('action_id',array('POST','GET'));
|
|
$info_id = $content ? $content : get_var('info_id', array('POST','GET'));
|
|
$type = $type ? $type : get_var('type', array('POST','GET'));
|
|
$referer = $referer !== '' ? $referer :
|
|
ereg_replace('^.*'.$GLOBALS['phpgw_info']['server']['webserver_url'],'',
|
|
get_var('HTTP_REFERER',Array('SERVER')));
|
|
//echo "<p>uiinfolog::edit: info_id=$info_id, action='$action', action_id='$action_id', type='$type', referer='$referer'</p>\n";
|
|
|
|
$this->bo->read( $info_id || $action != 'sp' ? $info_id : $action_id );
|
|
$content = $this->bo->so->data;
|
|
$today = mktime(-$this->tz_offset,0,0,date('m'),date('d'),date('Y')); // time=00:00
|
|
|
|
if (intval($content['info_link_id']) > 0 && !$this->link->get_link($content['info_link_id']))
|
|
{
|
|
$content['info_link_id'] = 0; // link has been deleted
|
|
}
|
|
|
|
if (!$info_id && $action_id && $action == 'sp') // new SubProject
|
|
{
|
|
if (!$this->bo->check_access($action_id,PHPGW_ACL_ADD))
|
|
{
|
|
return $referer ? $this->tmpl->location($referer) : $this->index(0,$action,$action_id);
|
|
}
|
|
$parent = $this->bo->so->data;
|
|
$content['info_id'] = $info_id = 0;
|
|
$content['info_owner'] = $this->user;
|
|
$content['info_id_parent'] = $parent['info_id'];
|
|
/*
|
|
if ($parent['info_type']=='task' && $parent['info_status']=='offer')
|
|
{
|
|
$content['info_type'] = 'confirm'; // confirmation to parent
|
|
$content['info_responsible'] = $parent['info_owner'];
|
|
}
|
|
*/
|
|
$content['info_status'] = 'ongoing';
|
|
$content['info_confirm'] = 'not';
|
|
$content['info_subject']=lang($this->messages['re']).' '.$parent['info_subject'];
|
|
$content['info_des'] = '';
|
|
$content['info_lastmodified'] = '';
|
|
if ($content['info_startdate'] < time()) // parent-startdate is in the past => today
|
|
{
|
|
$content['info_startdate'] = $today;
|
|
}
|
|
if ($content['info_enddate'] < time()) // parent-enddate is in the past => empty
|
|
{
|
|
$content['info_enddate'] = '';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if ($info_id && !$this->bo->check_access($info_id,PHPGW_ACL_EDIT))
|
|
{
|
|
if ($content['info_responsible'] == $this->user)
|
|
{
|
|
$content['status_only'] = True;
|
|
foreach($content as $name => $value)
|
|
{
|
|
$readonlys[$name] = $name != 'info_status';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return $referer ? $this->tmpl->location($referer) : $this->index(0,$action,$action_id);
|
|
}
|
|
}
|
|
}
|
|
$content['links'] = $content['link_to'] = array(
|
|
'to_id' => $info_id,
|
|
'to_app' => 'infolog',
|
|
);
|
|
switch ($action)
|
|
{
|
|
case 'sp':
|
|
$links = $this->bo->link->get_links('infolog',$parent['info_id'],'!'.$this->bo->link->vfs_appname);
|
|
foreach($links as $link)
|
|
{
|
|
$link_id = $this->link->link('infolog',$content['link_to']['to_id'],$link['app'],$link['id'],$link['remark']);
|
|
|
|
if ($parent['info_link_id'] == $link['link_id'])
|
|
{
|
|
$content['info_link_id'] = $link_id;
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 'addressbook':
|
|
case 'projects':
|
|
case 'calendar':
|
|
default: // to allow other apps to participate
|
|
$content['info_link_id'] = $this->link->link('infolog',$content['link_to']['to_id'],$action,$action_id);
|
|
// $content['blur_title'] = $this->link->title($action,$action_id);
|
|
|
|
case '':
|
|
if ($info_id)
|
|
{
|
|
break; // normal edit
|
|
}
|
|
case 'new': // new entry
|
|
$content['info_startdate'] = $today;
|
|
if ($type != '')
|
|
{
|
|
$content['info_type'] = $type;
|
|
}
|
|
break;
|
|
}
|
|
$content['link_to']['primary'] = $content['info_link_id'] ? $content['info_link_id'] : True;
|
|
|
|
if (!isset($this->bo->enums['type'][$content['info_type']]))
|
|
{
|
|
$content['info_type'] = 'note';
|
|
}
|
|
}
|
|
if ($action && $action != 'new' && $action != 'sp')
|
|
{
|
|
$content['blur_title'] = $this->link->title($action,$action_id);
|
|
}
|
|
$readonlys['delete'] = !$info_id || !$this->bo->check_access($info_id,PHPGW_ACL_DELETE);
|
|
|
|
$GLOBALS['phpgw_info']['flags']['app_header'] = lang($this->messages[$info_id ? 'edit' : ($action == 'sp' ? 'add_sub' : 'add')]);
|
|
|
|
$this->tmpl->read('infolog.edit');
|
|
if ($this->bo->has_customfields($content['info_type']))
|
|
{
|
|
$content['customfields'] = $this->bo->customfields;
|
|
$content['customfields']['###typ###'] = $content['info_type'];
|
|
}
|
|
else
|
|
{
|
|
$this->tmpl->set_cell_attribute('description|links|delegation|customfields','name','description|links|delegation');
|
|
}
|
|
$GLOBALS['phpgw_info']['flags']['app_header'] = lang('InfoLog').' - '.
|
|
($content['status_only'] ? lang('Edit Status') : lang('Edit'));
|
|
$GLOBALS['phpgw_info']['flags']['params']['manual'] = array('page' => ($info_id ? 'ManualInfologEdit' : 'ManualInfologAdd'));
|
|
|
|
//echo "<p>uiinfolog.edit(info_id='$info_id',action='$action',action_id='$action_id') readonlys="; print_r($readonlys); echo ", content = "; _debug_array($content);
|
|
$this->tmpl->exec('infolog.uiinfolog.edit',$content,array(
|
|
'info_type' => $this->bo->enums['type'],
|
|
'info_pri' => $this->bo->enums['priority'],
|
|
'info_confirm' => $this->bo->enums['confirm'],
|
|
'info_status' => $this->bo->status[$content['info_type']]
|
|
),$readonlys,array(
|
|
'info_id' => $info_id,
|
|
'info_id_parent' => $content['info_id_parent'],
|
|
'info_link_id' => $content['info_link_id'],
|
|
'action' => $action,
|
|
'action_id' => $action_id,
|
|
'referer' => $referer,
|
|
'link_to' => array('to_id' => $content['link_to']['to_id']) // in case tab gets not viewed
|
|
));
|
|
}
|
|
|
|
function menuaction($action = 'get_list',$app='infolog')
|
|
{
|
|
return array( 'menuaction' => "$app.ui$app.$action" );
|
|
}
|
|
|
|
function icon($cat,$id,$status='')
|
|
{
|
|
if (!$status || !($icon = $this->icons[$cat][$id.'_'.$status]))
|
|
{
|
|
$icon = $this->icons[$cat][$id];
|
|
}
|
|
if ($icon && !is_readable($GLOBALS['phpgw']->common->get_image_dir() . '/' . $icon))
|
|
{
|
|
$icon = False;
|
|
}
|
|
if (!$status || !($alt = $this->icons[$cat][$id.'_'.$status.'_alt']))
|
|
{
|
|
if (!($alt = $this->icons[$cat][$id.'_alt']))
|
|
{
|
|
$alt = $id;
|
|
}
|
|
}
|
|
return $icon ? $this->html->image('infolog',$icon,lang($alt),'border=0') : lang($alt);
|
|
}
|
|
|
|
function admin( )
|
|
{
|
|
if(get_var('cancel',Array('POST')))
|
|
{
|
|
$GLOBALS['phpgw']->redirect_link('/admin/index.php');
|
|
}
|
|
|
|
if(get_var('save',Array('POST')))
|
|
{
|
|
$this->bo->link_pathes = $this->bo->send_file_ips = array();
|
|
|
|
$valid = get_var('valid',Array('POST'));
|
|
$trans = get_var('trans',Array('POST'));
|
|
$ip = get_var('ip',Array('POST'));
|
|
while(list($key,$val) = each($valid))
|
|
{
|
|
if($val = stripslashes($val))
|
|
{
|
|
$this->bo->link_pathes[$val] = stripslashes($trans[$key]);
|
|
$this->bo->send_file_ips[$val] = stripslashes($ip[$key]);
|
|
}
|
|
}
|
|
$this->bo->config->config_data = array(
|
|
'link_pathes' => $this->bo->link_pathes,
|
|
'send_file_ips' => $this->bo->send_file_ips
|
|
);
|
|
$this->bo->config->save_repository(True);
|
|
}
|
|
|
|
$GLOBALS['phpgw_info']['flags']['css'] = $this->html->theme2css();
|
|
$GLOBALS['phpgw_info']['flags']['app_header'] = lang('InfoLog').' - '.lang('Configuration');
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
|
|
|
$GLOBALS['phpgw']->template->set_file(array('info_admin_t' => 'admin.tpl'));
|
|
$GLOBALS['phpgw']->template->set_block('info_admin_t', 'admin_line');
|
|
$GLOBALS['phpgw']->template->set_block('info_admin_t', 'info_admin');
|
|
|
|
$GLOBALS['phpgw']->template->set_var(Array(
|
|
'text' => lang('<b>file-attachments via symlinks</b> instead of uploads and retrieval via file:/path for direct lan-clients'),
|
|
'action_url' => $this->html->link('/index.php',$this->menuaction('admin')),
|
|
'save_button' => $this->html->submit_button('save','Save'),
|
|
'done_button' => $this->html->submit_button('cancel','Cancel'),
|
|
'lang_valid' => lang('valid path on clientside<br>eg. \\\\Server\\Share or e:\\'),
|
|
'lang_trans' => lang('path on (web-)serverside<br>eg. /var/samba/Share'),
|
|
'lang_ip' => lang('reg. expr. for local IP\'s<br>eg. ^192\\.168\\.1\\.')
|
|
));
|
|
|
|
if (!is_array($this->bo->send_file_ips))
|
|
{
|
|
$this->bo->send_file_ips = $this->bo->link_pathes = array();
|
|
}
|
|
$i = 0; @reset($this->bo->link_pathes);
|
|
do {
|
|
list($valid,$trans) = @each($this->bo->link_pathes);
|
|
$GLOBALS['phpgw']->template->set_var(array(
|
|
'tr_color' => $i & 1 ? 'row_off' : 'row_on',
|
|
'num' => $i+1,
|
|
'val_valid' => $this->html->input("valid[$i]",$valid),
|
|
'val_trans' => $this->html->input("trans[$i]",$trans),
|
|
'val_ip' => $this->html->input("ip[$i]",$this->bo->send_file_ips[$valid])
|
|
));
|
|
$GLOBALS['phpgw']->template->parse('admin_lines','admin_line',True);
|
|
++$i;
|
|
} while ($valid);
|
|
|
|
if ($this->tmpl->stable)
|
|
{
|
|
echo parse_navbar();
|
|
$GLOBALS['phpgw']->template->pfp('phpgw_body','info_admin');
|
|
}
|
|
else
|
|
{
|
|
$GLOBALS['phpgw']->template->fp('phpgw_body','info_admin');
|
|
}
|
|
}
|
|
|
|
/*!
|
|
@function writeLangFile
|
|
@abstract writes langfile with all templates and messages registered here
|
|
@discussion called via [write Langfile] in the etemplate-editor or as http://domain/phpgroupware/index.php?menuaction=infolog.uiinfolog.writeLangFile
|
|
*/
|
|
function writeLangFile()
|
|
{
|
|
$extra = $this->messages + $this->filters;
|
|
$enums = $this->bo->enums + $this->bo->status;
|
|
unset($enums['defaults']);
|
|
foreach($enums as $key => $msg_arr)
|
|
{
|
|
$extra += $msg_arr;
|
|
}
|
|
return $this->tmpl->writeLangFile('infolog','en',$extra);
|
|
}
|
|
|
|
/*!
|
|
@function hook_view
|
|
@abstract shows infolog in other applications
|
|
@syntax hook_view($args)
|
|
@param $args['location'] location des hooks: {addressbook|projects|calendar}_view|infolog
|
|
@param $args['view'] menuaction to view, if location == 'infolog'
|
|
@param $args['app'] app-name, if location == 'infolog'
|
|
@param $args['view_id'] name of the id-var for location == 'infolog'
|
|
@param $args[$args['view_id']] id of the entry
|
|
@note this function can be called for any app, which should include infolog: \
|
|
$GLOBALS['phpgw']->hooks->process(array( \
|
|
'location' => 'infolog', \
|
|
'app' => <your app>, \
|
|
'view_id' => <id name>, \
|
|
<id name> => <id value>, \
|
|
'view' => <menuaction to view an entry in your app> \
|
|
));
|
|
*/
|
|
function hook_view($args)
|
|
{
|
|
switch ($args['location'])
|
|
{
|
|
case 'addressbook_view':
|
|
$app = 'addressbook';
|
|
$view_id = 'ab_id';
|
|
$view = 'addressbook.uiaddressbook.view';
|
|
break;
|
|
case 'projects_view':
|
|
$app = 'projects';
|
|
$view_id = 'project_id';
|
|
$view = 'projects.uiprojects.view';
|
|
break;
|
|
case 'calendar_view':
|
|
$app = 'calendar';
|
|
$view_id = 'cal_id';
|
|
$view = 'calendar.uicalendar.view';
|
|
break;
|
|
default:
|
|
$app = $args['app'];
|
|
$view_id = $args['view_id'];
|
|
$view = $args['view'];
|
|
}
|
|
if (!is_array($args) || $args['debug'])
|
|
{
|
|
echo "<p>uiinfolog::hook_view("; print_r($args); echo "): app='$app', $view_id='$args[$view_id]', view='$view'</p>\n";
|
|
}
|
|
if (!isset($app) || !isset($args[$view_id]))
|
|
{
|
|
return False;
|
|
}
|
|
$this->called_by = $app; // for read/save_sessiondata, to have different sessions for the hooks
|
|
|
|
$save_app = $GLOBALS['phpgw_info']['flags']['currentapp'];
|
|
$GLOBALS['phpgw_info']['flags']['currentapp'] = 'infolog';
|
|
|
|
$GLOBALS['phpgw']->translation->add_app('infolog');
|
|
|
|
$GLOBALS['phpgw_info']['etemplate']['hooked'] = True;
|
|
$this->index(0,$app,$args[$view_id],array(
|
|
'menuaction' => $view,
|
|
$view_id => $args[$view_id]
|
|
),True);
|
|
$GLOBALS['phpgw_info']['flags']['currentapp'] = $save_app;
|
|
unset($GLOBALS['phpgw_info']['etemplate']['hooked']);
|
|
}
|
|
}
|