Recurring tasks (#847): rename class constants
This commit is contained in:
@@ -81,7 +81,7 @@
|
||||
</li>
|
||||
<?php endif ?>
|
||||
|
||||
<?php if (! isset($not_editable) && $task['recurrence_status'] != \Model\Task::RECURE_STATUS_NONE): ?>
|
||||
<?php if (! isset($not_editable) && $task['recurrence_status'] != \Model\Task::RECURRING_STATUS_NONE): ?>
|
||||
<li>
|
||||
<strong><?= t('Recurring information') ?></strong>
|
||||
<?= $this->render('task/recurring_info', array(
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<h2><?= t('Edit recurrence') ?></h2>
|
||||
</div>
|
||||
|
||||
<?php if ($task['recurrence_status'] != \Model\Task::RECURE_STATUS_NONE): ?>
|
||||
<?php if ($task['recurrence_status'] != \Model\Task::RECURRING_STATUS_NONE): ?>
|
||||
<div class="listing">
|
||||
<?= $this->render('task/recurring_info', array(
|
||||
'task' => $task,
|
||||
@@ -13,7 +13,7 @@
|
||||
</div>
|
||||
<?php endif ?>
|
||||
|
||||
<?php if ($task['recurrence_status'] != \Model\Task::RECURE_STATUS_PROCESSED): ?>
|
||||
<?php if ($task['recurrence_status'] != \Model\Task::RECURRING_STATUS_PROCESSED): ?>
|
||||
|
||||
<form method="post" action="<?= $this->u('task', 'recurrence', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'ajax' => $ajax)) ?>" autocomplete="off">
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<ul>
|
||||
<?php if ($task['recurrence_status'] == \Model\Task::RECURE_STATUS_PENDING): ?>
|
||||
<?php if ($task['recurrence_status'] == \Model\Task::RECURRING_STATUS_PENDING): ?>
|
||||
<li><?= t('Recurrent task is scheduled to be generated') ?></li>
|
||||
<?php elseif ($task['recurrence_status'] == \Model\Task::RECURE_STATUS_PROCESSED): ?>
|
||||
<?php elseif ($task['recurrence_status'] == \Model\Task::RECURRING_STATUS_PROCESSED): ?>
|
||||
<li><?= t('Recurrent task has been generated') ?>
|
||||
<ul>
|
||||
<li>
|
||||
|
||||
Reference in New Issue
Block a user