default.php
3.13 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/**
* @package Joomla.Administrator
* @subpackage com_postinstall
*
* @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
$renderer = JFactory::getDocument()->loadRenderer('module');
$options = array('style' => 'raw');
$mod = JModuleHelper::getModule('mod_feed');
$param = array(
'rssurl' => 'https://www.joomla.org/announcements/release-news.feed?type=rss',
'rsstitle' => 0,
'rssdesc' => 0,
'rssimage' => 1,
'rssitems' => 5,
'rssitemdesc' => 1,
'word_count' => 200,
'cache' => 0,
'moduleclass_sfx' => ' list-striped'
);
$params = array('params' => json_encode($param));
?>
<?php if (empty($this->items)): ?>
<h2><?php echo JText::_('COM_POSTINSTALL_LBL_NOMESSAGES_TITLE') ?></h2>
<p><?php echo JText::_('COM_POSTINSTALL_LBL_NOMESSAGES_DESC') ?></p>
<div>
<button onclick="window.location='index.php?option=com_postinstall&view=messages&task=reset&eid=<?php echo $this->eid; ?>&<?php echo $this->token ?>=1'; return false;" class="btn btn-warning">
<span class="icon icon-eye-open"></span>
<?php echo JText::_('COM_POSTINSTALL_BTN_RESET') ?>
</button>
</div>
<?php if ($this->eid == 700): ?>
<br/>
<div>
<h3><?php echo JText::_('COM_POSTINSTALL_LBL_RELEASENEWS'); ?></h3>
<?php echo $renderer->render($mod, $params, $options); ?>
</div>
<?php endif; ?>
<?php else: ?>
<?php
if ($this->eid == 700):
echo JHtml::_('sliders.start', 'panel-sliders', array('useCookie' => '1'));
echo JHtml::_('sliders.panel', JText::_('COM_POSTINSTALL_LBL_MESSAGES'), 'postinstall-panel-messages');
else:
?>
<h2><?php echo JText::_('COM_POSTINSTALL_LBL_MESSAGES') ?></h2>
<?php endif; ?>
<?php foreach ($this->items as $item): ?>
<fieldset>
<legend><?php echo JText::_($item->title_key) ?></legend>
<p class="small">
<?php echo JText::sprintf('COM_POSTINSTALL_LBL_SINCEVERSION', $item->version_introduced) ?>
</p>
<p><?php echo JText::_($item->description_key) ?></p>
<div>
<?php if ($item->type !== 'message'): ?>
<button onclick="window.location='index.php?option=com_postinstall&view=messages&task=action&id=<?php echo $item->postinstall_message_id ?>&<?php echo $this->token ?>=1'; return false;" class="btn btn-primary">
<?php echo JText::_($item->action_key) ?>
</button>
<?php endif; ?>
<?php if (JFactory::getUser()->authorise('core.edit.state', 'com_postinstall')) : ?>
<button onclick="window.location='index.php?option=com_postinstall&view=message&task=unpublish&id=<?php echo $item->postinstall_message_id ?>&<?php echo $this->token ?>=1'; return false;" class="btn btn-inverse btn-small">
<?php echo JText::_('COM_POSTINSTALL_BTN_HIDE') ?>
</button>
<?php endif; ?>
</div>
</fieldset>
<?php endforeach; ?>
<?php
if ($this->eid == 700):
echo JHtml::_('sliders.panel', JText::_('COM_POSTINSTALL_LBL_RELEASENEWS'), 'postinstall-panel-releasenotes');
?>
<?php echo $renderer->render($mod, $params, $options); ?>
<?php
echo JHtml::_('sliders.end');
endif;
?>
<?php endif; ?>