summaryrefslogtreecommitdiffstatshomepage
path: root/templates
diff options
context:
space:
mode:
authorGravatar mensonge2008-12-03 13:25:15 +0000
committerGravatar mensonge2008-12-03 13:25:15 +0000
commit9539998bae06c6661d7d7867bacab3d5083f1bfc (patch)
tree38a31b0cca4df5908639f0b736c3d0e8dddb21e4 /templates
parentb818ffae24857f39a57c7c43dea2c9aa87815368 (diff)
downloadscuttle-9539998bae06c6661d7d7867bacab3d5083f1bfc.tar.gz
scuttle-9539998bae06c6661d7d7867bacab3d5083f1bfc.zip
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@191 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates')
-rw-r--r--templates/userlist.tpl.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/templates/userlist.tpl.php b/templates/userlist.tpl.php
deleted file mode 100644
index fdccc62..0000000
--- a/templates/userlist.tpl.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-
-/* Service creation: only useful services are created */
-$userservice =& ServiceFactory::getServiceInstance('UserService');
-
-$currentObjectUser = $userservice->getCurrentObjectUser();
-
-$this->includeTemplate($GLOBALS['top_include']);
-
-echo '<ol id="bookmarks">';
-
-foreach($users as $user) {
- echo '<li class="xfolkentry">'."\n";
-
- echo '<div class="link">';
- echo '<a href="'.createURL('profile', $user->getUsername()).'">'.$user->getUsername().'</a>';
- echo '</div>';
-
- if($user->getUsername() != $currentObjectUser->getUsername()) {
- echo '<div class="meta">';
- echo '<a href="'.createURL('admin','delete/'.$user->getUsername()).'" onclick="return confirm(\''.T_('Are you sure?').'\');">'.T_('Delete').'</a>';
- echo '</div>';
- }
-
- echo '</li>'."\n";
-}
-?>
-<h3><?php echo T_('Check consistancy')?></h3>
-<a href="<?php echo createURL('admin','checkUrl/') ?>"> <?php echo T_('Check all urls') ?></a>
-
-<?php
-$this->includeTemplate('sidebar.tpl');
-$this->includeTemplate($GLOBALS['bottom_include']);
-
-?>