From: Michael J. Rubinsky Date: Sat, 8 May 2010 20:28:21 +0000 (-0400) Subject: Add icons for event exceptions X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a4e856a510038b52c9a24da6f61c7fa20cfcea98;p=horde.git Add icons for event exceptions --- diff --git a/kronolith/lib/Event.php b/kronolith/lib/Event.php index 0ee26c219..9c00f2342 100644 --- a/kronolith/lib/Event.php +++ b/kronolith/lib/Event.php @@ -2570,6 +2570,9 @@ abstract class Kronolith_Event if ($this->recurs()) { $title = Kronolith::recurToString($this->recurrence->getRecurType()); $status .= Horde::fullSrcImg('recur-' . $icon_color . '.png', array('attr' => array('alt' => $title, 'title' => $title, 'class' => 'iconRecur'))); + } elseif ($this->baseid) { + $title = _("Exception"); + $status .= Horde::fullSrcImg('exception-' . $icon_color . '.png', array('attr' => array('alt' => $title, 'title' => $title, 'class' => 'iconRecur'))); } if ($this->private) { diff --git a/kronolith/themes/graphics/exception-000.png b/kronolith/themes/graphics/exception-000.png new file mode 100644 index 000000000..80393a535 Binary files /dev/null and b/kronolith/themes/graphics/exception-000.png differ diff --git a/kronolith/themes/graphics/exception-fff.png b/kronolith/themes/graphics/exception-fff.png new file mode 100644 index 000000000..f6f9ff4f6 Binary files /dev/null and b/kronolith/themes/graphics/exception-fff.png differ