-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoverview.php
More file actions
59 lines (51 loc) · 1.91 KB
/
overview.php
File metadata and controls
59 lines (51 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* Overview pane for admin.
* Give flexibility to add any link item in admin
*
* @package Expose
* @version 4.0
* @author ThemeXpert http://www.themexpert.com
* @copyright Copyright (C) 2010 - 2011 ThemeXpert
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3
*
**/
?>
<div class='overview-panel-left'>
<div class='overview-inner gradient3 clearfix'>
<img class="auto-size" src="<?php echo $imagePath ;?>" alt="template_preview" />
<?php echo JText::_('EXPOSE_DESCRIPTION'); ?>
</div>
</div>
<div class='overview-panel-right'>
<div class='overview-inner'>
<div class='template-info gradient clearfix'>
<div class='template-name'></div>
<div class='details'> <?php echo JText::_('EXPOSE_TEMPLATE_STYLE_DESC') ?> </div>
</div>
<div class='live-update gradient'>
<p class="version-info">
<?php echo JText::_('EXPOSE_TEMPLATE_VERSION'); ?>
<span><?php echo $version; ?></span>
</p>
<p class="version-info">
<?php echo JText::_('EXPOSE_FRAMEWORK_VERSION') ;?>
<span><?php echo EXPOSE_VERSION; ?></span>
</p>
</div>
<div class='getting-help gradient3'>
<h2 class="help-title"> <?php echo JText::_('EXPOSE_GETTING_HELP_TITLE'); ?> </h2>
<ul>
<li>
<a href="http://www.themexpert.com/expose" target="_blank">Expose Framework Homepage</a>
</li>
<li>
<a href="http://docs.themexpert.com" target="_blank">Expose Framework Documentation</a>
</li>
<li>
<a href="https://groups.google.com/d/forum/expose-framework" target="_blank">Expose Framework Mailing list</a>
</li>
</ul>
</div>
</div>
</div>