Rename controllers
This commit is contained in:
@@ -4,11 +4,11 @@
|
||||
<?php if ($project['is_public']): ?>
|
||||
<div class="menu-inline pull-right">
|
||||
<ul>
|
||||
<li><i class="fa fa-rss-square fa-fw"></i><?= $this->url->link(t('RSS feed'), 'feed', 'project', array('token' => $project['token']), false, '', '', true) ?></li>
|
||||
<li><i class="fa fa-calendar fa-fw"></i><?= $this->url->link(t('iCal feed'), 'ical', 'project', array('token' => $project['token'])) ?></li>
|
||||
<li><i class="fa fa-rss-square fa-fw"></i><?= $this->url->link(t('RSS feed'), 'FeedController', 'project', array('token' => $project['token']), false, '', '', true) ?></li>
|
||||
<li><i class="fa fa-calendar fa-fw"></i><?= $this->url->link(t('iCal feed'), 'ICalendarController', 'project', array('token' => $project['token'])) ?></li>
|
||||
</ul>
|
||||
</div>
|
||||
<?php endif ?>
|
||||
|
||||
<?= $this->render('event/events', array('events' => $events)) ?>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
<?php if (isset($captcha) && $captcha): ?>
|
||||
<?= $this->form->label(t('Enter the text below'), 'captcha') ?>
|
||||
<img src="<?= $this->url->href('Captcha', 'image') ?>"/>
|
||||
<img src="<?= $this->url->href('CaptchaController', 'image') ?>" alt="Captcha">
|
||||
<?= $this->form->text('captcha', array(), $errors, array('required')) ?>
|
||||
<?php endif ?>
|
||||
|
||||
@@ -39,4 +39,4 @@
|
||||
<?php endif ?>
|
||||
|
||||
<?= $this->hook->render('template:auth:login-form:after') ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6,14 +6,14 @@
|
||||
|
||||
<div class="form-actions">
|
||||
<?php if (! empty($user['avatar_path'])): ?>
|
||||
<?= $this->url->link(t('Remove my image'), 'AvatarFile', 'remove', array('user_id' => $user['id']), true, 'btn btn-red') ?>
|
||||
<?= $this->url->link(t('Remove my image'), 'AvatarFileController', 'remove', array('user_id' => $user['id']), true, 'btn btn-red') ?>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<h3><?= t('Upload my avatar image') ?></h3>
|
||||
<form method="post" enctype="multipart/form-data" action="<?= $this->url->href('AvatarFile', 'upload', array('user_id' => $user['id'])) ?>">
|
||||
<form method="post" enctype="multipart/form-data" action="<?= $this->url->href('AvatarFileController', 'upload', array('user_id' => $user['id'])) ?>">
|
||||
<?= $this->form->csrf() ?>
|
||||
<?= $this->form->file('avatar') ?>
|
||||
|
||||
|
||||
@@ -65,11 +65,11 @@
|
||||
<strong><?= $this->text->bytes($db_size) ?></strong>
|
||||
</li>
|
||||
<li>
|
||||
<?= $this->url->link(t('Download the database'), 'config', 'downloadDb', array(), true) ?>
|
||||
<?= $this->url->link(t('Download the database'), 'ConfigController', 'downloadDb', array(), true) ?>
|
||||
<?= t('(Gzip compressed Sqlite file)') ?>
|
||||
</li>
|
||||
<li>
|
||||
<?= $this->url->link(t('Optimize the database'), 'config', 'optimizeDb', array(), true) ?>
|
||||
<?= $this->url->link(t('Optimize the database'), 'ConfigController', 'optimizeDb', array(), true) ?>
|
||||
<?= t('(VACUUM command)') ?>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<input type="text" class="auto-select" readonly="readonly" value="<?= $this->url->base().'jsonrpc.php' ?>">
|
||||
</li>
|
||||
<li>
|
||||
<?= $this->url->link(t('Reset token'), 'config', 'token', array('type' => 'api'), true) ?>
|
||||
<?= $this->url->link(t('Reset token'), 'ConfigController', 'token', array('type' => 'api'), true) ?>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Application settings') ?></h2>
|
||||
</div>
|
||||
<form method="post" action="<?= $this->url->href('config', 'save', array('redirect' => 'application')) ?>" autocomplete="off">
|
||||
<form method="post" action="<?= $this->url->href('ConfigController', 'save', array('redirect' => 'application')) ?>" autocomplete="off">
|
||||
|
||||
<?= $this->form->csrf() ?>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Board settings') ?></h2>
|
||||
</div>
|
||||
<form method="post" action="<?= $this->url->href('config', 'save', array('redirect' => 'board')) ?>" autocomplete="off">
|
||||
<form method="post" action="<?= $this->url->href('ConfigController', 'save', array('redirect' => 'board')) ?>" autocomplete="off">
|
||||
|
||||
<?= $this->form->csrf() ?>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<h2><?= t('Calendar settings') ?></h2>
|
||||
</div>
|
||||
<section>
|
||||
<form method="post" action="<?= $this->url->href('config', 'save', array('redirect' => 'calendar')) ?>" autocomplete="off">
|
||||
<form method="post" action="<?= $this->url->href('ConfigController', 'save', array('redirect' => 'calendar')) ?>" autocomplete="off">
|
||||
|
||||
<?= $this->form->csrf() ?>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<h2><?= t('Integration with third-party services') ?></h2>
|
||||
</div>
|
||||
|
||||
<form method="post" action="<?= $this->url->href('config', 'save', array('redirect' => 'integrations')) ?>" autocomplete="off">
|
||||
<form method="post" action="<?= $this->url->href('ConfigController', 'save', array('redirect' => 'integrations')) ?>" autocomplete="off">
|
||||
<?= $this->form->csrf() ?>
|
||||
<?= $this->hook->render('template:config:integrations', array('values' => $values)) ?>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Project settings') ?></h2>
|
||||
</div>
|
||||
<form method="post" action="<?= $this->url->href('config', 'save', array('redirect' => 'project')) ?>" autocomplete="off">
|
||||
<form method="post" action="<?= $this->url->href('ConfigController', 'save', array('redirect' => 'project')) ?>" autocomplete="off">
|
||||
|
||||
<?= $this->form->csrf() ?>
|
||||
|
||||
|
||||
@@ -1,35 +1,35 @@
|
||||
<div class="sidebar">
|
||||
<h2><?= t('Actions') ?></h2>
|
||||
<ul>
|
||||
<li <?= $this->app->checkMenuSelection('config', 'index') ?>>
|
||||
<?= $this->url->link(t('About'), 'config', 'index') ?>
|
||||
<li <?= $this->app->checkMenuSelection('ConfigController', 'index') ?>>
|
||||
<?= $this->url->link(t('About'), 'ConfigController', 'index') ?>
|
||||
</li>
|
||||
<li <?= $this->app->checkMenuSelection('config', 'application') ?>>
|
||||
<?= $this->url->link(t('Application settings'), 'config', 'application') ?>
|
||||
<li <?= $this->app->checkMenuSelection('ConfigController', 'application') ?>>
|
||||
<?= $this->url->link(t('Application settings'), 'ConfigController', 'application') ?>
|
||||
</li>
|
||||
<li <?= $this->app->checkMenuSelection('config', 'project') ?>>
|
||||
<?= $this->url->link(t('Project settings'), 'config', 'project') ?>
|
||||
<li <?= $this->app->checkMenuSelection('ConfigController', 'project') ?>>
|
||||
<?= $this->url->link(t('Project settings'), 'ConfigController', 'project') ?>
|
||||
</li>
|
||||
<li <?= $this->app->checkMenuSelection('config', 'board') ?>>
|
||||
<?= $this->url->link(t('Board settings'), 'config', 'board') ?>
|
||||
<li <?= $this->app->checkMenuSelection('ConfigController', 'board') ?>>
|
||||
<?= $this->url->link(t('Board settings'), 'ConfigController', 'board') ?>
|
||||
</li>
|
||||
<li <?= $this->app->checkMenuSelection('config', 'calendar') ?>>
|
||||
<?= $this->url->link(t('Calendar settings'), 'config', 'calendar') ?>
|
||||
<li <?= $this->app->checkMenuSelection('ConfigController', 'calendar') ?>>
|
||||
<?= $this->url->link(t('Calendar settings'), 'ConfigController', 'calendar') ?>
|
||||
</li>
|
||||
<li <?= $this->app->checkMenuSelection('link') ?>>
|
||||
<?= $this->url->link(t('Link settings'), 'link', 'index') ?>
|
||||
</li>
|
||||
<li <?= $this->app->checkMenuSelection('currency', 'index') ?>>
|
||||
<?= $this->url->link(t('Currency rates'), 'currency', 'index') ?>
|
||||
<li <?= $this->app->checkMenuSelection('CurrencyController', 'index') ?>>
|
||||
<?= $this->url->link(t('Currency rates'), 'CurrencyController', 'index') ?>
|
||||
</li>
|
||||
<li <?= $this->app->checkMenuSelection('config', 'integrations') ?>>
|
||||
<?= $this->url->link(t('Integrations'), 'config', 'integrations') ?>
|
||||
<li <?= $this->app->checkMenuSelection('ConfigController', 'integrations') ?>>
|
||||
<?= $this->url->link(t('Integrations'), 'ConfigController', 'integrations') ?>
|
||||
</li>
|
||||
<li <?= $this->app->checkMenuSelection('config', 'webhook') ?>>
|
||||
<?= $this->url->link(t('Webhooks'), 'config', 'webhook') ?>
|
||||
<li <?= $this->app->checkMenuSelection('ConfigController', 'webhook') ?>>
|
||||
<?= $this->url->link(t('Webhooks'), 'ConfigController', 'webhook') ?>
|
||||
</li>
|
||||
<li <?= $this->app->checkMenuSelection('config', 'api') ?>>
|
||||
<?= $this->url->link(t('API'), 'config', 'api') ?>
|
||||
<li <?= $this->app->checkMenuSelection('ConfigController', 'api') ?>>
|
||||
<?= $this->url->link(t('API'), 'ConfigController', 'api') ?>
|
||||
</li>
|
||||
<?= $this->hook->render('template:config:sidebar') ?>
|
||||
</ul>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<h2><?= t('Webhook settings') ?></h2>
|
||||
</div>
|
||||
<section>
|
||||
<form method="post" action="<?= $this->url->href('config', 'save', array('redirect' => 'webhook')) ?>" autocomplete="off">
|
||||
<form method="post" action="<?= $this->url->href('ConfigController', 'save', array('redirect' => 'webhook')) ?>" autocomplete="off">
|
||||
|
||||
<?= $this->form->csrf() ?>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
<strong><?= $this->text->e($values['webhook_token']) ?></strong>
|
||||
</li>
|
||||
<li>
|
||||
<?= $this->url->link(t('Reset token'), 'config', 'token', array('type' => 'webhook'), true) ?>
|
||||
<?= $this->url->link(t('Reset token'), 'ConfigController', 'token', array('type' => 'webhook'), true) ?>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<hr/>
|
||||
<h3><?= t('Change reference currency') ?></h3>
|
||||
<?php endif ?>
|
||||
<form method="post" action="<?= $this->url->href('currency', 'reference') ?>" autocomplete="off">
|
||||
<form method="post" action="<?= $this->url->href('CurrencyController', 'reference') ?>" autocomplete="off">
|
||||
|
||||
<?= $this->form->csrf() ?>
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
<hr/>
|
||||
<h3><?= t('Add a new currency rate') ?></h3>
|
||||
<form method="post" action="<?= $this->url->href('currency', 'create') ?>" autocomplete="off">
|
||||
<form method="post" action="<?= $this->url->href('CurrencyController', 'create') ?>" autocomplete="off">
|
||||
|
||||
<?= $this->form->csrf() ?>
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<?php endif ?>
|
||||
<li>
|
||||
<i class="fa fa-search fa-fw"></i>
|
||||
<?= $this->url->link(t('Search'), 'search', 'index') ?>
|
||||
<?= $this->url->link(t('Search'), 'SearchController', 'index') ?>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-folder fa-fw"></i>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<form method="get" action="<?= $this->url->dir() ?>" class="search">
|
||||
<?= $this->form->hidden('controller', array('controller' => 'search')) ?>
|
||||
<?= $this->form->hidden('action', array('action' => 'index')) ?>
|
||||
<?= $this->form->text('search', array(), array(), array('placeholder="'.t('Search').'"'), 'form-input-large') ?>
|
||||
<?= $this->form->text('SearchController', array(), array(), array('placeholder="'.t('Search').'"'), 'form-input-large') ?>
|
||||
<?= $this->render('app/filters_helper') ?>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
<ul>
|
||||
<li>
|
||||
<i class="fa fa-life-ring fa-fw"></i>
|
||||
<?= $this->url->link(t('Table of contents'), 'doc', 'show', array('file' => 'index')) ?>
|
||||
<?= $this->url->link(t('Table of contents'), 'DocumentationController', 'show', array('file' => 'index')) ?>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="markdown documentation">
|
||||
<?= $content ?>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title><?= t('%s\'s activity', $project['name']) ?></title>
|
||||
<link rel="alternate" type="text/html" href="<?= $this->url->base() ?>"/>
|
||||
<link rel="self" type="application/atom+xml" href="<?= $this->url->href('feed', 'project', array('token' => $project['token']), false, '', true) ?>"/>
|
||||
<link rel="self" type="application/atom+xml" href="<?= $this->url->href('FeedController', 'project', array('token' => $project['token']), false, '', true) ?>"/>
|
||||
<updated><?= date(DATE_ATOM) ?></updated>
|
||||
<id><?= $this->url->href('feed', 'project', array('token' => $project['token']), false, '', true) ?></id>
|
||||
<id><?= $this->url->href('FeedController', 'project', array('token' => $project['token']), false, '', true) ?></id>
|
||||
<icon><?= $this->url->base() ?>assets/img/favicon.png</icon>
|
||||
|
||||
<?php foreach ($events as $e): ?>
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
|
||||
<title><?= t('Project activities for %s', $user['name'] ?: $user['username']) ?></title>
|
||||
<link rel="alternate" type="text/html" href="<?= $this->url->base() ?>"/>
|
||||
<link rel="self" type="application/atom+xml" href="<?= $this->url->href('feed', 'user', array('token' => $user['token']), false, '', true) ?>"/>
|
||||
<link rel="self" type="application/atom+xml" href="<?= $this->url->href('FeedController', 'user', array('token' => $user['token']), false, '', true) ?>"/>
|
||||
<updated><?= date(DATE_ATOM) ?></updated>
|
||||
<id><?= $this->url->href('feed', 'user', array('token' => $user['token']), false, '', true) ?></id>
|
||||
<id><?= $this->url->href('FeedController', 'user', array('token' => $user['token']), false, '', true) ?></id>
|
||||
<icon><?= $this->url->base() ?>assets/img/favicon.png</icon>
|
||||
|
||||
<?php foreach ($events as $e): ?>
|
||||
|
||||
@@ -88,12 +88,12 @@
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-cog fa-fw"></i>
|
||||
<?= $this->url->link(t('Settings'), 'config', 'index') ?>
|
||||
<?= $this->url->link(t('Settings'), 'ConfigController', 'index') ?>
|
||||
</li>
|
||||
<?php endif ?>
|
||||
<li>
|
||||
<i class="fa fa-life-ring fa-fw"></i>
|
||||
<?= $this->url->link(t('Documentation'), 'doc', 'show') ?>
|
||||
<?= $this->url->link(t('Documentation'), 'DocumentationController', 'show') ?>
|
||||
</li>
|
||||
<?php if (! DISABLE_LOGOUT): ?>
|
||||
<li>
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
</head>
|
||||
<body data-status-url="<?= $this->url->href('UserAjaxController', 'status') ?>"
|
||||
data-login-url="<?= $this->url->href('auth', 'login') ?>"
|
||||
data-keyboard-shortcut-url="<?= $this->url->href('Doc', 'shortcuts') ?>"
|
||||
data-keyboard-shortcut-url="<?= $this->url->href('DocumentationController', 'shortcuts') ?>"
|
||||
data-timezone="<?= $this->app->getTimezone() ?>"
|
||||
data-js-lang="<?= $this->app->jsLang() ?>">
|
||||
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<?= $this->form->text('username', $values, $errors, array('autofocus', 'required')) ?>
|
||||
|
||||
<?= $this->form->label(t('Enter the text below'), 'captcha') ?>
|
||||
<img src="<?= $this->url->href('Captcha', 'image') ?>"/>
|
||||
<img src="<?= $this->url->href('CaptchaController', 'image') ?>" alt="Captcha">
|
||||
<?= $this->form->text('captcha', array(), $errors, array('required')) ?>
|
||||
|
||||
<div class="form-actions">
|
||||
<button type="submit" class="btn btn-blue"><?= t('Change Password') ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -30,8 +30,8 @@
|
||||
|
||||
<?php if ($project['is_public']): ?>
|
||||
<li><i class="fa fa-share-alt"></i> <?= $this->url->link(t('Public link'), 'board', 'readonly', array('token' => $project['token']), false, '', '', true) ?></li>
|
||||
<li><i class="fa fa-rss-square"></i> <?= $this->url->link(t('RSS feed'), 'feed', 'project', array('token' => $project['token']), false, '', '', true) ?></li>
|
||||
<li><i class="fa fa-calendar"></i> <?= $this->url->link(t('iCal feed'), 'ical', 'project', array('token' => $project['token'])) ?></li>
|
||||
<li><i class="fa fa-rss-square"></i> <?= $this->url->link(t('RSS feed'), 'FeedController', 'project', array('token' => $project['token']), false, '', '', true) ?></li>
|
||||
<li><i class="fa fa-calendar"></i> <?= $this->url->link(t('iCal feed'), 'ICalendarController', 'project', array('token' => $project['token'])) ?></li>
|
||||
<?php endif ?>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
<div class="listing">
|
||||
<ul class="no-bullet">
|
||||
<li><strong><i class="fa fa-share-alt"></i> <?= $this->url->link(t('Public link'), 'board', 'readonly', array('token' => $project['token']), false, '', '', true) ?></strong></li>
|
||||
<li><strong><i class="fa fa-rss-square"></i> <?= $this->url->link(t('RSS feed'), 'feed', 'project', array('token' => $project['token']), false, '', '', true) ?></strong></li>
|
||||
<li><strong><i class="fa fa-calendar"></i> <?= $this->url->link(t('iCal feed'), 'ical', 'project', array('token' => $project['token']), false, '', '', true) ?></strong></li>
|
||||
<li><strong><i class="fa fa-rss-square"></i> <?= $this->url->link(t('RSS feed'), 'FeedController', 'project', array('token' => $project['token']), false, '', '', true) ?></strong></li>
|
||||
<li><strong><i class="fa fa-calendar"></i> <?= $this->url->link(t('iCal feed'), 'ICalendarController', 'project', array('token' => $project['token']), false, '', '', true) ?></strong></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
|
||||
<?php if ($project['is_public']): ?>
|
||||
<li><i class="fa fa-share-alt"></i> <?= $this->url->link(t('Public link'), 'board', 'readonly', array('token' => $project['token']), false, '', '', true) ?></li>
|
||||
<li><i class="fa fa-rss-square"></i> <?= $this->url->link(t('RSS feed'), 'feed', 'project', array('token' => $project['token']), false, '', '', true) ?></li>
|
||||
<li><i class="fa fa-calendar"></i> <?= $this->url->link(t('iCal feed'), 'ical', 'project', array('token' => $project['token'])) ?></li>
|
||||
<li><i class="fa fa-rss-square"></i> <?= $this->url->link(t('RSS feed'), 'FeedController', 'project', array('token' => $project['token']), false, '', '', true) ?></li>
|
||||
<li><i class="fa fa-calendar"></i> <?= $this->url->link(t('iCal feed'), 'ICalendarController', 'project', array('token' => $project['token'])) ?></li>
|
||||
<?php else: ?>
|
||||
<li><?= t('Public access disabled') ?></li>
|
||||
<?php endif ?>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<ul>
|
||||
<li>
|
||||
<i class="fa fa-search fa-fw"></i>
|
||||
<?= $this->url->link(t('Search tasks'), 'search', 'index') ?>
|
||||
<?= $this->url->link(t('Search tasks'), 'SearchController', 'index') ?>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -36,4 +36,4 @@
|
||||
<?= $this->render('event/events', array('events' => $events)) ?>
|
||||
<?php endif ?>
|
||||
|
||||
</section>
|
||||
</section>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<ul>
|
||||
<li>
|
||||
<i class="fa fa-search fa-fw"></i>
|
||||
<?= $this->url->link(t('Activity stream search'), 'search', 'activity') ?>
|
||||
<?= $this->url->link(t('Activity stream search'), 'SearchController', 'activity') ?>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -40,4 +40,4 @@
|
||||
)) ?>
|
||||
<?php endif ?>
|
||||
|
||||
</section>
|
||||
</section>
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
<?php if (! empty($user['token'])): ?>
|
||||
<div class="listing">
|
||||
<ul class="no-bullet">
|
||||
<li><strong><i class="fa fa-rss-square"></i> <?= $this->url->link(t('RSS feed'), 'feed', 'user', array('token' => $user['token']), false, '', '', true) ?></strong></li>
|
||||
<li><strong><i class="fa fa-calendar"></i> <?= $this->url->link(t('iCal feed'), 'ical', 'user', array('token' => $user['token']), false, '', '', true) ?></strong></li>
|
||||
<li><strong><i class="fa fa-rss-square"></i> <?= $this->url->link(t('RSS feed'), 'FeedController', 'user', array('token' => $user['token']), false, '', '', true) ?></strong></li>
|
||||
<li><strong><i class="fa fa-calendar"></i> <?= $this->url->link(t('iCal feed'), 'ICalendarController', 'user', array('token' => $user['token']), false, '', '', true) ?></strong></li>
|
||||
</ul>
|
||||
</div>
|
||||
<?= $this->url->link(t('Disable public access'), 'UserViewController', 'share', array('user_id' => $user['id'], 'switch' => 'disable'), true, 'btn btn-red') ?>
|
||||
|
||||
@@ -37,8 +37,8 @@
|
||||
|
||||
<div class="listing">
|
||||
<ul class="no-bullet">
|
||||
<li><strong><i class="fa fa-rss-square"></i> <?= $this->url->link(t('RSS feed'), 'feed', 'user', array('token' => $user['token']), false, '', '', true) ?></strong></li>
|
||||
<li><strong><i class="fa fa-calendar"></i> <?= $this->url->link(t('iCal feed'), 'ical', 'user', array('token' => $user['token']), false, '', '', true) ?></strong></li>
|
||||
<li><strong><i class="fa fa-rss-square"></i> <?= $this->url->link(t('RSS feed'), 'FeedController', 'user', array('token' => $user['token']), false, '', '', true) ?></strong></li>
|
||||
<li><strong><i class="fa fa-calendar"></i> <?= $this->url->link(t('iCal feed'), 'ICalendarController', 'user', array('token' => $user['token']), false, '', '', true) ?></strong></li>
|
||||
</ul>
|
||||
</div>
|
||||
<?php endif ?>
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
<?= $this->url->link(t('Edit profile'), 'UserModificationController', 'show', array('user_id' => $user['id'])) ?>
|
||||
</li>
|
||||
<li <?= $this->app->checkMenuSelection('AvatarFile') ?>>
|
||||
<?= $this->url->link(t('Avatar'), 'AvatarFile', 'show', array('user_id' => $user['id'])) ?>
|
||||
<?= $this->url->link(t('Avatar'), 'AvatarFileController', 'show', array('user_id' => $user['id'])) ?>
|
||||
</li>
|
||||
<?php endif ?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user