diff options
author | Malf Furious <m@lfurio.us> | 2018-07-21 01:00:34 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-07-21 01:00:34 -0400 |
commit | 8ed0fa2b4f9b6e7d085a7ed633864a0a4d4141a4 (patch) | |
tree | 2fc0705040925d928246f6a57a758e84c515809b /examples/view/common/permissions.setting.modal.view.php | |
parent | 8924aabba1c3427250a07910c05028c53db07871 (diff) | |
download | scrott-8ed0fa2b4f9b6e7d085a7ed633864a0a4d4141a4.tar.gz scrott-8ed0fa2b4f9b6e7d085a7ed633864a0a4d4141a4.zip |
Reorg examples/ directory
Diffstat (limited to 'examples/view/common/permissions.setting.modal.view.php')
-rw-r--r-- | examples/view/common/permissions.setting.modal.view.php | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/examples/view/common/permissions.setting.modal.view.php b/examples/view/common/permissions.setting.modal.view.php deleted file mode 100644 index 55e4157..0000000 --- a/examples/view/common/permissions.setting.modal.view.php +++ /dev/null @@ -1,82 +0,0 @@ -<?php - -/* - * SCROTT Copyright (C) 2016 Malf Furious - * - * Scrott is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published - * by the Free Software Foundation, either version 3 of the License, - * or (at your option) any later version. - * - * Scrott is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; even the implied warranty of MERCHANTABILITY - * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public - * License for more details. - */ - -?> - -<?php function common_setting_permissions($mod, $obj) { ?> - <?php if ($obj->canModifyPermissions($mod->getCurrentUser())) { ?> - <label>Permissions</label> - <div class="row"> - <div class="col-md-6"> - <div class="checkbox"> - <label> - <input type="checkbox" name="input[perm0]" value="1" <?=($obj->perms & 0x100 ? "checked" : "")?> /> Members can modify - </label> - </div> - - <div class="checkbox"> - <label> - <input type="checkbox" name="input[perm1]" value="1" <?=($obj->perms & 0x080 ? "checked" : "")?> /> Members can modify members - </label> - </div> - - <div class="checkbox"> - <label> - <input type="checkbox" name="input[perm2]" value="1" <?=($obj->perms & 0x040 ? "checked" : "")?> /> Members can access children - </label> - </div> - - <div class="checkbox"> - <label> - <input type="checkbox" name="input[perm3]" value="1" <?=($obj->perms & 0x020 ? "checked" : "")?> /> Members can create children - </label> - </div> - - <div class="checkbox"> - <label> - <input type="checkbox" name="input[perm4]" value="1" <?=($obj->perms & 0x010 ? "checked" : "")?> /> Members can modify children - </label> - </div> - - <div class="checkbox"> - <label> - <input type="checkbox" name="input[perm5]" value="1" <?=($obj->perms & 0x008 ? "checked" : "")?> /> Members can modify children's members - </label> - </div> - </div> - - <div class="col-md-6"> - <div class="checkbox"> - <label> - <input type="checkbox" name="input[perm6]" value="1" <?=($obj->perms & 0x004 ? "checked" : "")?> /> Public can access - </label> - </div> - - <div class="checkbox"> - <label> - <input type="checkbox" name="input[perm7]" value="1" <?=($obj->perms & 0x002 ? "checked" : "")?> /> Public can access children - </label> - </div> - - <div class="checkbox"> - <label> - <input type="checkbox" name="input[perm8]" value="1" <?=($obj->perms & 0x001 ? "checked" : "")?> /> Public can create children - </label> - </div> - </div> - </div> - <?php } ?> -<?php } ?> |