diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-09-24 23:03:28 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-09-24 23:03:28 +0200 |
commit | a54ea3246cb2d20e3527211d3413f5d3a8dd529f (patch) | |
tree | c0fe08956aae8e37b5a0859dc101229df673bc1a /apps/files_publiclink/templates/admin.php | |
parent | ce2c7bad448f157b16ead4442431a0fbf057944b (diff) | |
download | nextcloud-server-a54ea3246cb2d20e3527211d3413f5d3a8dd529f.tar.gz nextcloud-server-a54ea3246cb2d20e3527211d3413f5d3a8dd529f.zip |
removed 'share by publiclink' app as it has been superseded by Sharing
Diffstat (limited to 'apps/files_publiclink/templates/admin.php')
-rw-r--r-- | apps/files_publiclink/templates/admin.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/apps/files_publiclink/templates/admin.php b/apps/files_publiclink/templates/admin.php deleted file mode 100644 index b5c04b838bd..00000000000 --- a/apps/files_publiclink/templates/admin.php +++ /dev/null @@ -1,18 +0,0 @@ -<input type="hidden" id="baseUrl" value="<?php echo $_['baseUrl'];?>"/> -<table id="linklist"> - <thead id="controls"> - <tr id="newlink_row"><form action="#" id="newlink"> - <td class="path"><input placeholder="Path" id="path"/></td> - <td><input type="submit" value="Share" /></td> - </form></tr> - </thead> - <tbody> - <?php foreach($_['links'] as $link):?> - <tr class="link" id="<?php echo $link['token'];?>"> - <td class="path"><?php echo $link['path'];?></td> - <td class="link"><input type="text" value="<?php echo $_['baseUrl'];?>?token=<?php echo $link['token'];?>" /></td> - <td><input type="submit" class="delete" data-token="<?php echo $link['token'];?>" value="<?php echo $l->t( 'Delete' ); ?>" /></td> - </tr> - <?php endforeach;?> - </tbody> -</table> |