forked from internet2/comanage-grouper-widget
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Integrated plugin with comanage processes
Showing
15 changed files
with
142 additions
and
90 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
$cm_grouper_lite_texts['en_US'] = array( | ||
|
||
'pl.grouperlite.nav.groups' => 'Groups', | ||
'pl.grouperlite.nav.groups-presided' => 'Groups I preside over', | ||
'pl.grouperlite.nav.email-lists' => 'Email lists', | ||
'pl.grouperlite.nav.email-lists-managed' => 'Email lists I manage', | ||
'pl.grouperlite.nav.create-group' => 'Create group', | ||
|
||
'pl.grouperlite.table.name' => 'Name', | ||
'pl.grouperlite.table.description' => 'Description', | ||
'pl.grouperlite.table.status' => 'Status', | ||
'pl.grouperlite.table.action' => 'Action', | ||
|
||
'pl.grouperlite.value.descr.zerostate' => 'No Description', | ||
'pl.grouperlite.value.enabled' => 'Enabled', | ||
'pl.grouperlite.value.disabled' => 'Disabled', | ||
|
||
'pl.grouperlite.action.join-group' => 'Join group', | ||
'pl.grouperlite.action.leave-group' => 'Leave group', | ||
'pl.grouperlite.action.edit-group' => 'Edit', | ||
'pl.grouperlite.action.disable-group' => 'Disable', | ||
'pl.grouperlite.action.subscribe' => 'Subscribe', | ||
'pl.grouperlite.action.unsubscribe' => 'Unsubscribe', | ||
'pl.grouperlite.action.search' => 'Search', | ||
|
||
'pl.grouperlite.search.tags.text' => 'Search', | ||
); |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Hi I am the dashboard widget |
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,16 +1,9 @@ | ||
<form method="POST" action="<?php echo $this->Html->url( | ||
array('controller' => 'groupergroups', 'action' => $action) | ||
)?>"> | ||
<?php echo $this->Form->create(false, array( | ||
'url' => array('controller' => 'groupergroups', 'action' => $action) | ||
)); ?> | ||
<input type="hidden" name="GroupName" value="<?php echo $group; ?>" /> | ||
<?php | ||
// If a token was passed in, submit it as part of the form | ||
if(!empty($vv_petition_token)) { | ||
print $this->Form->hidden('token', array('default' => $vv_petition_token)) . "\n"; | ||
} | ||
?> | ||
<button class="btn btn-raised btn-block btn-<?php echo $member ? 'danger' : 'success'; ?>" type="submit"> | ||
<?php echo $member ? 'Leave' : 'Join' ?> group | ||
<?php echo $member ? _txt('pl.grouperlite.action.leave-group') : _txt('pl.grouperlite.action.join-group') ?> | ||
<i class="fa fa-<?php echo $member ? 'user-times' : 'users'; ?> fa-sm"></i> | ||
|
||
</button> | ||
</form> | ||
<?php echo $this->Form->end(); ?> |
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
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
Oops, something went wrong.