fenom/src/Aspect/ProviderInterface.php

30 lines
520 B
PHP
Raw Normal View History

<?php
namespace Aspect;
interface ProviderInterface {
/**
* @param string $tpl
* @return bool
*/
public function isTemplateExists($tpl);
/**
* @param string $tpl
2013-02-13 18:52:47 +04:00
* @param int $time
* @return string
*/
2013-02-13 18:52:47 +04:00
public function getSource($tpl, &$time);
/**
* @param string $tpl
* @return int
*/
public function getLastModified($tpl);
public function getLastModifiedBatch($tpls);
/**
* @return array
*/
2013-02-13 18:52:47 +04:00
public function getList();
}