init
This commit is contained in:
37
mysyde/common/interfaces/PageableViewInterface.php
Normal file
37
mysyde/common/interfaces/PageableViewInterface.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
namespace DynCom\mysyde\common\interfaces;
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: Bauer
|
||||
* Date: 29.01.2015
|
||||
* Time: 11:11
|
||||
*/
|
||||
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: Bauer
|
||||
* Date: 22.01.2015
|
||||
* Time: 14:22
|
||||
*/
|
||||
interface PageableViewInterface {
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function render();
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getContent();
|
||||
|
||||
public function echoContent();
|
||||
|
||||
/**
|
||||
* @param int $fromElementNo
|
||||
* @param int $toElementNo
|
||||
* @return mixed
|
||||
*/
|
||||
public function getData($fromElementNo = 0, $toElementNo = -1);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user