1 | <?php |
||
20 | class Concrete5 extends AbstractView |
||
21 | { |
||
22 | /** |
||
23 | * The path to the partials directory |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $partials_path = ''; |
||
27 | |||
28 | /** |
||
29 | * The URL base to use for calling static assets in view partials |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $static_assets_url_base = ''; |
||
33 | |||
34 | /** |
||
35 | * Sets the static asset URL base |
||
36 | * @param string $url_base |
||
37 | * @return \mithra62\Platforms\View\Concrete5 |
||
38 | */ |
||
39 | public function setStaticAssetsUrlBase($url_base) |
||
44 | |||
45 | /** |
||
46 | * Returns the static asset URL base |
||
47 | * @return string |
||
48 | */ |
||
49 | public function getStaticAssetsUrlBase() |
||
53 | } |