diff options
author | Malf Furious <m@lfurio.us> | 2018-07-26 04:23:25 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-07-26 04:23:25 -0400 |
commit | 0dc6d736c254fc38b2e923069827e47a2494b256 (patch) | |
tree | bca0f050b0e0d773cdcf1c984ece7c60e9309e79 /app/model | |
parent | 84b7c560ffc09a65df896116ccd63b2f132b92b0 (diff) | |
download | scrott-0dc6d736c254fc38b2e923069827e47a2494b256.tar.gz scrott-0dc6d736c254fc38b2e923069827e47a2494b256.zip |
Add group/pad list item
UI module to use when listing out groups and pads. These will link to
the group/pad page and display information about the object.
Diffstat (limited to 'app/model')
-rw-r--r-- | app/model/gpListItem.php | 42 | ||||
-rw-r--r-- | app/model/objHeadCircle.php | 37 |
2 files changed, 79 insertions, 0 deletions
diff --git a/app/model/gpListItem.php b/app/model/gpListItem.php new file mode 100644 index 0000000..809a7cf --- /dev/null +++ b/app/model/gpListItem.php @@ -0,0 +1,42 @@ +<?php + +/* + * SCROTT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + * + * For more information, please refer to UNLICENSE + */ + +require_once "class/group.class.php"; +require_once "class/pad.class.php"; + +/* + * including scope defines + * obj $obj + */ + +$url = ar() . "/" . $obj->guid; +$owner = $obj->getOwner(); +$own_name = $owner->getDisplayName(); +$obj_name = $obj->name; +$numb_membs = count($obj->getMembers()); + +/* TODO - tweak lengths (check view file as well) */ +$membs_lg = $obj->getMembers(18); +$membs_md = $obj->getMembers(18); +$membs_sm = $obj->getMembers(18); +$membs_xs = $obj->getMembers(18); + +if ($obj->objtype == "group") + $glyph = "glyphicon-th"; +else if ($obj->objtype == "pad") + $glyph = "glyphicon-edit"; +else + throw new Exception("Group/pad list item was given something besides a group or pad"); + +?> diff --git a/app/model/objHeadCircle.php b/app/model/objHeadCircle.php new file mode 100644 index 0000000..eef56b7 --- /dev/null +++ b/app/model/objHeadCircle.php @@ -0,0 +1,37 @@ +<?php + +/* + * SCROTT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + * + * For more information, please refer to UNLICENSE + */ + +require_once "class/obj.class.php"; + +/* + * including scope defines + * obj $obj + * int $height + */ + +$src = $obj->getHeadImg(); + +switch ($obj->objtype) +{ + case "user": + case "group": + $alt = $obj->getDisplayName(); + break; + + default: + $alt = $obj->name; + break; +} + +?> |