blob: b549075bcdf055a7ede368f94408dbc1fefa9a58 (
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
|
<?php
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# Resource representation [javascript] [Thomas Lange <code@nerdmind.de>] #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# #
# [More information coming soon] #
# #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
namespace BigPipe\Resource;
class Javascript extends \BigPipe\Resource {
#===============================================================================
# Build resource
#===============================================================================
public function __construct(string $id, string $url) {
parent::__construct($id, parent::TYPE_JAVASCRIPT, $url);
}
#===============================================================================
# Render resource HTML
#===============================================================================
public function renderHTML(): string {
return sprintf('<script data-id="%s" src="%s"></script>', $this->getID(), $this->getURL());
}
}
|