diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-05-25 19:43:36 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-05-25 19:43:36 +0200 |
commit | 5ba53394fcda4ae9cfa9af52b37fb67517deeb5a (patch) | |
tree | 4416be7903a2b339382e9f933284f50797edc239 /data/templates/bookmarkcommondescriptionedit.tpl.php | |
parent | 63b0a4b8cb38a8a7c41410900b9dfcc84e6a33a9 (diff) | |
download | semanticscuttle-5ba53394fcda4ae9cfa9af52b37fb67517deeb5a.tar.gz semanticscuttle-5ba53394fcda4ae9cfa9af52b37fb67517deeb5a.tar.bz2 |
implement request #1989987: theme support. merge themes branch with --squash
Diffstat (limited to 'data/templates/bookmarkcommondescriptionedit.tpl.php')
-rw-r--r-- | data/templates/bookmarkcommondescriptionedit.tpl.php | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/data/templates/bookmarkcommondescriptionedit.tpl.php b/data/templates/bookmarkcommondescriptionedit.tpl.php deleted file mode 100644 index 807c58b..0000000 --- a/data/templates/bookmarkcommondescriptionedit.tpl.php +++ /dev/null @@ -1,58 +0,0 @@ -<?php - -$this->includeTemplate($GLOBALS['top_include']); - -list ($url, $hash) = explode('/', $_SERVER['PATH_INFO']); - - -?> -<script type="text/javascript"> -window.onload = function() { - document.getElementById("title").focus(); -} -</script> - -<form action="<?php echo $formaction; ?>" method="post"> -<table title="<?php echo T_('Collaborative description: these fields can be viewed and modified by every users') ?>"> -<tr> - <th align="left"><?php echo T_('Title'); ?></th> - <td><input type="text" id="title" name="title" size="75" maxlength="255" value="<?php echo $description['cdTitle']; ?>" onkeypress="this.style.backgroundImage = 'none';" /></td> - <td></td> -</tr> -<tr> - <th align="left"><?php echo T_('Description'); ?></th> - <td><textarea name="description" cols="75" rows="10"><?php echo $description['cdDescription']; ?></textarea></td> -</tr> -<tr> - <td></td> - <td> - <?php - if(strlen($description['cdDatetime'])>0) { - echo T_('Last modification:').' '.$description['cdDatetime'].', '; - $lastUser = $userservice->getUser($description['uId']); - echo '<a href="'.createURL('profile', $lastUser['username']).'">' - . SemanticScuttle_Model_UserArray::getName($lastUser) . '</a>'; - } - ?> - </td> - <td></td> -</tr> -<tr> - <td></td> - <td> - <input type="submit" name="confirm" value="<?php echo T_('Update'); ?>" /> - <input type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" /> - </td> - <td></td> -</tr> -</table> - -<?php if (isset($referrer)): ?> -<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> -<?php endif; ?> -<div><input type="hidden" name="hash" value="<?php echo $hash; ?>" /></div> -</form> - -<?php -$this->includeTemplate($GLOBALS['bottom_include']); -?> |