9 lines
123 B
PHP
9 lines
123 B
PHP
<?php
|
|
|
|
/**
|
|
* @author OnTheGo Systems
|
|
*/
|
|
interface IWPML_Template_Service {
|
|
public function show( $model, $template );
|
|
}
|