diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-15 13:35:37 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-15 13:35:37 +0000 |
commit | 1a08a1f4a273737afb508c781d5f39cef021a273 (patch) | |
tree | 7b4c1766c7b6d0f1e492e467dccb19869f39445a /mod/tasklist/views | |
parent | ef3e87ebcf82fbf172aa719e23ef1a6cfca7a948 (diff) | |
download | elgg-1a08a1f4a273737afb508c781d5f39cef021a273.tar.gz elgg-1a08a1f4a273737afb508c781d5f39cef021a273.tar.bz2 |
Moving some stuff into the plugins repo, where it belongs.
git-svn-id: https://code.elgg.org/elgg/trunk@646 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/tasklist/views')
-rw-r--r-- | mod/tasklist/views/default/tasklist/item.php | 32 | ||||
-rw-r--r-- | mod/tasklist/views/default/tasklist/main.php | 18 | ||||
-rw-r--r-- | mod/tasklist/views/default/tasklist/newtask.php | 18 |
3 files changed, 0 insertions, 68 deletions
diff --git a/mod/tasklist/views/default/tasklist/item.php b/mod/tasklist/views/default/tasklist/item.php deleted file mode 100644 index 009d30aa4..000000000 --- a/mod/tasklist/views/default/tasklist/item.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - /** - * Elgg tasklist test - * - * @package ElggTasklist - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Marcus Povey <marcus@marcus-povey.co.uk> - * @copyright Curverider Ltd 2008 - * @link http://elgg.com/ - */ -?> -<tr> - <td><b><?php echo $vars['task'] ?></b></td> - - <td> - <?php if ($vars['status']=='done') - echo "done"; - else - { -?> - <form method = "post"> - <input type="hidden" name="action" value="tick" /> - <input type="hidden" name="status" value="done" /> - <input type="hidden" name="owner_id" value="<?php echo $vars['owner_id']; ?>"/> - <input type="hidden" name="guid" value="<?php echo $vars['guid']; ?>"/> - <input type="submit" name="Done" value="Done" /> - </form> -<?php - } -?> - </td> -</tr>
\ No newline at end of file diff --git a/mod/tasklist/views/default/tasklist/main.php b/mod/tasklist/views/default/tasklist/main.php deleted file mode 100644 index b371339bf..000000000 --- a/mod/tasklist/views/default/tasklist/main.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - /** - * Elgg tasklist test - * - * @package ElggTasklist - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Marcus Povey <marcus@marcus-povey.co.uk> - * @copyright Curverider Ltd 2008 - * @link http://elgg.com/ - */ - -?> -<h1><?php echo $vars['name'] ?>'s Tasklist</h1> -<?php echo $vars['tasklist']; ?> - -<?php echo $vars['newtask']; ?> - - diff --git a/mod/tasklist/views/default/tasklist/newtask.php b/mod/tasklist/views/default/tasklist/newtask.php deleted file mode 100644 index 579e27e6d..000000000 --- a/mod/tasklist/views/default/tasklist/newtask.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - /** - * Elgg tasklist test - * - * @package ElggTasklist - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Marcus Povey <marcus@marcus-povey.co.uk> - * @copyright Curverider Ltd 2008 - * @link http://elgg.com/ - */ -?> -<form method="post"> - <textarea name="task"></textarea> - <input type="text" name="tags" /> - <input type="hidden" name="action" value="newtask"/> - <input type="hidden" name="owner_id" value="<?php echo $vars['owner_id']; ?>"/> - <input type="submit" name="submit" /> -</form>
\ No newline at end of file |