-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplateHook.php
executable file
·82 lines (60 loc) · 1.58 KB
/
templateHook.php
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
<?php
/**
*------------------------------------------------------------------------------
* @package T3 Framework for Joomla!
*------------------------------------------------------------------------------
* @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @authors JoomlArt, JoomlaBamboo, (contribute to this project at github
* & Google group to become co-author)
* @Google group: https://groups.google.com/forum/#!forum/t3fw
* @Link: http://t3-framework.org
*------------------------------------------------------------------------------
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
/**
* T3 Blank Helper class
*
* @package T3 Blank
*/
/*
jimport('joomla.event.event');
class T3_BS3_BlankHook extends JEvent
{
public function __construct(&$subject, $config)
{
parent::__construct($subject, $config);
}
public function onT3Init() // no params
{
}
public function onT3TplInit($t3app)
{
}
public function onT3LoadLayout(&$path, $layout)
{
//T3::getApp()->addBodyClass('loadlayout');
}
public function onT3Spotlight(&$info, $name, $position)
{
}
public function onT3Megamenu(&$menutype, &$config, &$levels)
{
}
public function onT3BodyClass(&$class)
{
//$class[] = 'onbodyclass';
}
public function onT3BeforeCompileHead() // no params
{
}
public function onT3BeforeRender() // no params
{
}
public function onT3AfterRender() // no params
{
}
}
*/
?>