blob: 2185446ab61986e4cc9309ee0ade4c79ab2fdb1d (
plain)
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
|
<?php
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# Resource representation [stylesheet] [Thomas Lange <code@nerdmind.de>] #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# #
# [More information coming soon] #
# #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
namespace BigPipe\Resource;
class Stylesheet extends \BigPipe\Resource {
#===============================================================================
# Build resource
#===============================================================================
public function __construct($customID = NULL, $resourceURL) {
parent::__construct($customID, parent::TYPE_STYLESHEET, $resourceURL);
}
#===============================================================================
# Render resource HTML
#===============================================================================
public function renderHTML() {
return sprintf('<link data-id="%s" href="%s" rel="stylesheet" />', $this->getID(), $this->getURL());
}
}
?>
|