PreLoader.php
791 Bytes
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
<?php
/**
* @package Better Preview
* @version 6.1.0
*
* @author Peter van Westen <info@regularlabs.com>
* @link http://www.regularlabs.com
* @copyright Copyright © 2018 Regular Labs All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
namespace RegularLabs\Plugin\System\BetterPreview;
defined('_JEXEC') or die;
use JFactory;
use JText;
class PreLoader
{
public static function _()
{
$fid = JFactory::getApplication()->input->get('fid');
$template = file_get_contents(__DIR__ . '/Layout/PreLoader.html');
$template = str_replace(
[
'{loading}',
'parent.fid',
],
[
JText::_('BP_LOADING'),
'parent.' . $fid,
],
$template
);
echo $template;
die;
}
}