winter/modules/cms/contracts/CmsObject.php
Samuel Georges 24a620e890 Convert CmsObject and CmsCompoundObject to use Halcyon
getFullPath -> getFilePath
2016-03-12 15:32:16 +11:00

57 lines
1.1 KiB
PHP

<?php namespace Cms\Contracts;
interface CmsObject
{
/**
* Loads the template.
*
* @param string $hostObj
* @param string $fileName
* @return mixed
*/
public static function load($hostObj, $fileName);
/**
* Loads and caches the template.
*
* @param string $hostObj
* @param string $fileName
* @return mixed
*/
public static function loadCached($hostObj, $fileName);
/**
* Returns the local file path to the template.
*
* @param string $fileName
* @return string
*/
public function getFilePath($fileName = null);
/**
* Returns the file name.
* @return string
*/
public function getFileName();
/**
* Returns the file name without the extension.
* @return string
*/
public function getBaseFileName();
/**
* Returns the file content.
* @return string
*/
public function getContent();
/**
* Returns the Twig content string.
*
* @return string
*/
public function getTwigContent();
}