diff options
Diffstat (limited to 'admin/templates/app.php')
-rw-r--r-- | admin/templates/app.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/admin/templates/app.php b/admin/templates/app.php new file mode 100644 index 00000000000..4b5740c2bc4 --- /dev/null +++ b/admin/templates/app.php @@ -0,0 +1,27 @@ +<?php +/* + * Template for Apps + */ +$app=$_['app']; +?> +<h1><?php echo $app["name"]; ?></h1> +<?php echo('<span class="type">'.$app['typename'].'</span>'); ?><br /> +<span class="date"><?php echo OC_UTIL::formatdate($app["changed"]); ?></span><br /> + + +<table cellspacing="6" border="0" width="100%"> + <tr> + <td width="1" valign="top"> + <?php if($app["preview1"]<>"") { echo('<img class="preview" border="0" src="'.$app["preview1"].'" /><br />'); } ?> + <?php if($app["preview2"]<>"") { echo('<img class="preview" border="0" src="'.$app["preview2"].'" /><br />'); } ?> + <?php if($app["preview3"]<>"") { echo('<img class="preview" border="0" src="'.$app["preview3"].'" /><br />'); } ?> + </td> + <td class="description" valign="top"> + <?php echo $app["description"]; ?> + <br /> + <?php echo('<a class="description" href="'.$app["detailpage"].'">read more</a><br />'); ?> + </td> + <td width="1" valign="top" class="install"><a href="">INSTALL</a></td> + </tr> +</table> + |