diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-04-03 00:50:43 +0000 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-04-03 00:50:43 +0000 |
| commit | f1cb43430bc84aaa2bcf7bfc99d1ef9dd0138e78 (patch) | |
| tree | f7f8ae15106ec67d6b10220a6754c2d67353b048 /modules/organize/views/organize_album.html.php | |
| parent | 688376223853bcc07ef0eed9926a2a6fce46ef9e (diff) | |
First iteration of the organize functionality (orginally called bulk
edit). There is limited functionality in no edits work. This is
primary a chance for the team to review the ui. It is in a separate
module to isolate the changes. Eventually, it will be moved back into core.
Diffstat (limited to 'modules/organize/views/organize_album.html.php')
| -rw-r--r-- | modules/organize/views/organize_album.html.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/organize/views/organize_album.html.php b/modules/organize/views/organize_album.html.php new file mode 100644 index 00000000..9f38a2cc --- /dev/null +++ b/modules/organize/views/organize_album.html.php @@ -0,0 +1,15 @@ +<?php defined("SYSPATH") or die("No direct script access.") ?> +<ul> + <li class="gOrganizeBranch ui-icon-left" ref="<?= $album->id ?>"> + <span id="gOrganizeIcon-<?= $album->id ?>" ref="<?= $album->id ?>" + class="ui-icon <?= $album_icon ?><? if (empty($album_icon)): ?> gBranchEmpty<? endif ?>">> </span> + <span id="gOrganizeBranch-<?= $album->id ?>" ref="<?= $album->id ?>" + class="<? if ($selected): ?>gBranchSelected <? endif ?>gBranchText"> + <?= $album->title ?> + </span> + <span id="gOrganizeChildren-<?= $album->id ?>" + class="<? if ($album_icon == "ui-icon-plus"): ?>gBranchCollapsed<? endif ?>"> + <?= $children ?> + <span> + </li> +</ul> |
