-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged feature/ICPCO-113 into develop
- Loading branch information
Showing
9 changed files
with
194 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,35 @@ | ||
Group Created! | ||
<?php | ||
$this->extend('/GrouperGroups/base'); | ||
$this->Html->addCrumb('Create a Group'); | ||
|
||
$model = $this->name; | ||
?> | ||
<hr /> | ||
<div class="mt-4"> | ||
<div class="row"> | ||
<div class="col-lg-9 col-xs-12 col-xl-6"> | ||
<div class="create-group"> | ||
<div>Stems coming in are: Id=stem</div> | ||
<?php foreach($grouperstems as $grouperstem) : ?> | ||
<div>Value=<?php echo $grouperstem['name'] ?> Display=<?php echo $grouperstem['displayName'] ?></div> | ||
<?php endforeach; ?> | ||
|
||
<?php echo $this->Form->create(false, array( | ||
'url' => array('controller' => 'groupergroups', 'action' => 'groupcreate') | ||
)); ?> | ||
<?php | ||
if (!empty($this->plugin)) { | ||
if (file_exists(APP . "Plugin/" . $this->plugin . "/View/" . $model . "/groupfields.inc")) { | ||
include(APP . "Plugin/" . $this->plugin . "/View/" . $model . "/groupfields.inc"); | ||
} elseif (file_exists(LOCAL . "Plugin/" . $this->plugin . "/View/" . $model . "/groupfields.inc")) { | ||
include(LOCAL . "Plugin/" . $this->plugin . "/View/" . $model . "/groupfields.inc"); | ||
} | ||
} else { | ||
include(APP . "View/" . $model . "/groupfields.inc"); | ||
} | ||
?> | ||
<?php echo $this->Form->end(); ?> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.