forked from extern/egroupware
Small fixes, GNU Patch #264, and now puts printer friendly format with more details.
This commit is contained in:
parent
86ab1d83f2
commit
e7ac2f14ed
@ -130,7 +130,6 @@
|
||||
function bocalendar($session=0)
|
||||
{
|
||||
$this->grants = $GLOBALS['phpgw']->acl->get_grants('calendar');
|
||||
|
||||
@reset($this->grants);
|
||||
if($this->debug)
|
||||
{
|
||||
@ -205,7 +204,6 @@
|
||||
)
|
||||
);
|
||||
$this->datetime = $this->so->datetime;
|
||||
|
||||
$localtime = $this->datetime->gmtnow + $this->datetime->tz_offset;
|
||||
|
||||
$date = get_var('date',Array('HTTP_GET_VARS','HTTP_POST_VARS'));
|
||||
@ -1239,7 +1237,7 @@
|
||||
{
|
||||
return 'private';
|
||||
}
|
||||
elseif (strlen($event[$field]) > 19)
|
||||
elseif(strlen($event[$field]) > 19 && !$this->printer_friendly)
|
||||
{
|
||||
return substr($event[$field], 0 , 19) . '...';
|
||||
}
|
||||
|
@ -1947,7 +1947,7 @@
|
||||
. ' .event-on { background: '.$this->theme['row_on'].'; color: '.$this->theme['bg_text'].'; font: 100 80%/110% '.$this->theme['font'].'; vertical-align: middle }'."\n"
|
||||
. ' .event-off { background: '.$this->theme['row_off'].'; color: '.$this->theme['bg_text'].'; font: 100 80%/110% '.$this->theme['font'].'; vertical-align: middle }'."\n"
|
||||
. ' .event-holiday { background: '.$this->theme['bg04'].'; color: '.$this->theme['bg_text'].'; font: 100 80%/110% '.$this->theme['font'].'; vertical-align: middle }'."\n"
|
||||
. ' .time { background: '.$this->theme['navbar_bg'].'; color: '.$this->theme['bg_text'].'; font: 65%/100% '.$this->theme['font'].'; width: '.$time_width.'%; border: 1px '.$this->theme['navbar_text'].'; vertical-align: middle; }'."\n"
|
||||
. ' .time { background: '.$this->theme['navbar_bg'].'; color: '.$this->theme['bg_text'].'; font: 65%/100% '.$this->theme['font'].'; width: '.$time_width.'%; border: 1px '.$this->theme['navbar_text'].'; vertical-align: middle }'."\n"
|
||||
. ' .tablecell { width: 80px; height: 80px }';
|
||||
}
|
||||
|
||||
@ -2021,7 +2021,7 @@
|
||||
{
|
||||
$time = '';
|
||||
}
|
||||
$text = '';;
|
||||
$text = '';
|
||||
if(!$is_private)
|
||||
{
|
||||
$text .= $this->bo->display_status($event['users_status']);
|
||||
@ -2099,6 +2099,10 @@
|
||||
$this->output_template_array($p,'picture','pict',$var);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$text .= '<font size="-2" face="'.$this->theme['font'].'">'.nl2br($this->bo->get_short_field($event,$is_private,'description')).'</font>'.$GLOBALS['phpgw']->browser->br;
|
||||
}
|
||||
if ($text)
|
||||
{
|
||||
$var = Array(
|
||||
@ -2563,7 +2567,7 @@
|
||||
|
||||
function view_event($event,$alarms=False)
|
||||
{
|
||||
if(!$event['participants'][$this->bo->owner] && !$this->bo->member_of_group())
|
||||
if((!$event['participants'][$this->bo->owner] && !$this->bo->member_of_group()) || (!$event['public'] && !$this->bo->check_perms(PHPGW_ACL_PRIVATE)))
|
||||
{
|
||||
return '<center>'.lang('You do not have permission to read this record!').'</center>';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user