X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Ftemplates%2Fheader.tpl;h=ce8e229c51aa792347d39965d0a52b33262cdffa;hb=fb177d58cddc49dcc9507bfa75ab78732571eef9;hp=90a428911ce7942bb50e4d1a12af7f3c6c556eda;hpb=a781da5661a1932521e0d1feb4be340b97edce9a;p=timetracker.git diff --git a/WEB-INF/templates/header.tpl b/WEB-INF/templates/header.tpl index 90a42891..ce8e229c 100644 --- a/WEB-INF/templates/header.tpl +++ b/WEB-INF/templates/header.tpl @@ -101,16 +101,15 @@ With 101% height we essentially force the scrollbar to always appear. --> {if !$user->isClient()} {$i18n.menu.time} {/if} - {if in_array('ex', explode(',', $user->plugins)) && !$user->isClient()} + {if $user->isPluginEnabled('ex') && !$user->isClient()} · {$i18n.menu.expenses} {/if} {if !$user->isClient()}· {/if}{$i18n.menu.reports} - {if ($user->canManageTeam() || $user->isClient()) && in_array('iv', explode(',', $user->plugins))} + {if ($user->canManageTeam() || $user->isClient()) && $user->isPluginEnabled('iv')} · {$i18n.title.invoices} {/if} - {if (in_array('ch', explode(',', $user->plugins)) && !$user->isClient()) && ($smarty.const.MODE_PROJECTS == $user->tracking_mode - || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode - || in_array('cl', explode(',', $user->plugins)))} + {if ($user->isPluginEnabled('ch') && !$user->isClient()) && ($smarty.const.MODE_PROJECTS == $user->tracking_mode + || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode || $user->isPluginEnabled('cl'))} · {$i18n.menu.charts} {/if} {if !$user->isClient() && ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)} @@ -122,7 +121,7 @@ With 101% height we essentially force the scrollbar to always appear. --> {if !$user->isClient()} · {$i18n.menu.users} {/if} - {if $user->canManageTeam() && in_array('cl', explode(',', $user->plugins))} + {if $user->canManageTeam() && $user->isPluginEnabled('cl')} · {$i18n.menu.clients} {/if} {if $user->isManager()} @@ -160,11 +159,11 @@ With 101% height we essentially force the scrollbar to always appear. --> -{if !$errors->isEmpty()} +{if $err->yes()} @@ -174,11 +173,11 @@ With 101% height we essentially force the scrollbar to always appear. --> -{if !$messages->isEmpty()} +{if $msg->yes()}
- {foreach $errors->getErrors() as $error} + {foreach $err->getErrors() as $error} {$error.message}
{* No need to escape as they are not coming from user and may contain a link. *} {/foreach}
- {foreach $messages->getErrors() as $message} + {foreach $msg->getErrors() as $message} {$message.message}
{* No need to escape. *} {/foreach}