Browse
For agents
About
Hello Plus
/
trunk
Hello Plus
vtrunk
Switch version
trunk
1.0.0
1.0.1
1.0.2
1.0.3
1.1.0
1.1.1
1.1.2
1.1.3
1.2.0
1.2.1
1.3.0
1.4.0
1.4.1
1.5.0
1.5.1
1.5.2
1.5.3
1.6.0
1.6.1
1.6.2
1.7.0
1.7.1
1.7.2
1.7.3
All 30 releases
Overview
Code
hello-plus
/
classes
/
renderable.php
renderable.php
in Hello Plus trunk, at classes/renderable.php
13 lines
168 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
namespace
HelloPlus
\
Classes
;
4
5
if
(
!
defined
(
'
ABSPATH
'
)
)
{
6
exit
;
//
Exit if accessed directly.
7
}
8
9
interface
Renderable
{
10
11
public
function
render
(
)
:
void
;
12
}
13