|
2
|
1 |
<?php |
|
|
2 |
|
|
|
3 |
/* |
|
|
4 |
* This file is part of the WikiTagBundle package. |
|
|
5 |
* |
|
|
6 |
* (c) IRI <http://www.iri.centrepompidou.fr/> |
|
|
7 |
* |
|
|
8 |
* For the full copyright and license information, please view the LICENSE |
|
|
9 |
* file that was distributed with this source code. |
|
|
10 |
*/ |
|
|
11 |
|
|
|
12 |
namespace IRI\Bundle\WikiTagBundle\Model; |
|
|
13 |
|
|
|
14 |
interface DocumentInterface { |
|
|
15 |
|
|
|
16 |
/** |
|
|
17 |
* Get id |
|
|
18 |
* |
|
|
19 |
* @return integer |
|
|
20 |
*/ |
|
|
21 |
function getId(); |
|
|
22 |
|
|
|
23 |
/** |
|
|
24 |
* Set title |
|
|
25 |
* |
|
|
26 |
* @param string $title |
|
|
27 |
*/ |
|
|
28 |
function setTitle($title); |
|
|
29 |
|
|
|
30 |
/** |
|
|
31 |
* Get title |
|
|
32 |
* |
|
|
33 |
* @return string |
|
|
34 |
*/ |
|
|
35 |
function getTitle(); |
|
|
36 |
|
|
|
37 |
/** |
|
|
38 |
* Set description |
|
|
39 |
* |
|
|
40 |
* @param text $description |
|
|
41 |
*/ |
|
|
42 |
function setDescription($description); |
|
|
43 |
|
|
|
44 |
/** |
|
|
45 |
* Get description |
|
|
46 |
* |
|
|
47 |
* @return text |
|
|
48 |
*/ |
|
|
49 |
function getDescription(); |
|
|
50 |
|
|
|
51 |
/** |
|
|
52 |
* Set manualOrder |
|
|
53 |
* |
|
|
54 |
* @param boolean $manualOrder |
|
|
55 |
*/ |
|
|
56 |
function setManualOrder($manualOrder); |
|
|
57 |
|
|
|
58 |
/** |
|
|
59 |
* Get manualOrder |
|
|
60 |
* |
|
|
61 |
* @return boolean |
|
|
62 |
*/ |
|
|
63 |
function getManualOrder(); |
|
|
64 |
|
|
|
65 |
|
|
|
66 |
|
|
|
67 |
} |