summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Völker <github@floyer.de>2019-06-26 14:58:47 +0200
committerfguillot <fred@kanboard.net>2019-06-27 19:39:02 -0700
commitefed94b23d592647f889ef03b144a91e8fbb6098 (patch)
treeef5f227f0b4f62ffe3c9fc27651b8e1c6c74199a
parent02f6e94e24d5f717bd610da4a69049f81d13a0fc (diff)
Add "identifier" beside "name" while creating a new project
-rw-r--r--app/Controller/ProjectCreationController.php3
-rw-r--r--app/Template/project_creation/create.php4
2 files changed, 6 insertions, 1 deletions
diff --git a/app/Controller/ProjectCreationController.php b/app/Controller/ProjectCreationController.php
index c471cfdd..b9458bdd 100644
--- a/app/Controller/ProjectCreationController.php
+++ b/app/Controller/ProjectCreationController.php
@@ -96,13 +96,14 @@ class ProjectCreationController extends BaseController
$project = array(
'name' => $values['name'],
'is_private' => $values['is_private'],
+ 'identifier' => $values['identifier'],
);
return $this->projectModel->create($project, $this->userSession->getId(), true);
}
/**
- * Creatte from another project
+ * Create from another project
*
* @access private
* @param array $values
diff --git a/app/Template/project_creation/create.php b/app/Template/project_creation/create.php
index 430a4bac..01952f14 100644
--- a/app/Template/project_creation/create.php
+++ b/app/Template/project_creation/create.php
@@ -10,6 +10,10 @@
<?= $this->form->label(t('Name'), 'name') ?>
<?= $this->form->text('name', $values, $errors, array('autofocus', 'required')) ?>
+ <?= $this->form->label(t('Identifier'), 'identifier') ?>
+ <?= $this->form->text('identifier', $values, $errors, array('autofocus')) ?>
+ <p class="form-help"><?= t('The project identifier is optional and must be alphanumeric, example: MYPROJECT.') ?></p>
+
<?php if (count($projects_list) > 1): ?>
<?= $this->form->label(t('Create from another project'), 'src_project_id') ?>
<?= $this->form->select('src_project_id', $projects_list, $values, array(), array(), 'js-project-creation-select-options') ?>