-
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.
- Loading branch information
Showing
4 changed files
with
48 additions
and
35 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,33 @@ | ||
| <?php | ||
| <div id="right-sidebar"> | ||
| <div class="sidebar-content"> | ||
| <div class="font-weight-bold d-inline-flex align-items-center w-100"> | ||
| <em class="material-icons lg" aria-hidden="true">transfer_within_a_station</em> | ||
| <span class="ml-1"><?= _txt('pl.grouperlite.action.act-as')?></span> | ||
| <a data-toggle="collapse" | ||
| href="#people-picker-container" | ||
| role="button" | ||
| aria-expanded="false" | ||
| aria-controls="people-picker-container" | ||
| class="ignore-invalid ml-auto order-2"> | ||
| <span class="ui-icon ui-icon-search"></span><?= _txt('pl.grouperlite.action.find')?> | ||
| </a> | ||
| </div> | ||
| <div class="collapse mb-1 mt-2" id="people-picker-container"> | ||
| <?= $this->element('ActAsPeopleAutocomplete', | ||
| compact('vv_config', | ||
| 'vv_coid', | ||
| 'vv_is_user_owner', | ||
| 'htmlId') | ||
| )?> | ||
| </div> | ||
| <?php if(!empty($vv_act_as_people)):?> | ||
| <hr style="border-top: dotted 1px;" /> | ||
| <?php foreach($vv_act_as_people as $person): ?> | ||
| <?= $this->element('ActionItem', compact('person')) ?> | ||
| <?php endforeach; ?> | ||
| <?php endif; ?> | ||
| <hr> | ||
| </div> | ||
| </div> | ||
|
|
||
|
|
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