| author | cavaliet |
| Wed, 26 Oct 2011 15:38:05 +0200 | |
| changeset 14 | 673b2766024e |
| parent 4 | e63ac93fdbde |
| permissions | -rwxr-xr-x |
| 4 | 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 BaseDocumentInterface extends DocumentInterface { |
|
15 |
||
16 |
/** |
|
17 |
* TODO: Enter description here ... |
|
18 |
* |
|
19 |
* @param text $externalId |
|
20 |
*/ |
|
21 |
function setExternalId($externalId); |
|
22 |
||
23 |
/** |
|
24 |
* TODO: Enter description here ... |
|
25 |
*/ |
|
26 |
function getExternalId(); |
|
27 |
||
28 |
||
29 |
/** |
|
30 |
* Set manualOrder |
|
31 |
* |
|
32 |
* @param boolean $manualOrder |
|
33 |
*/ |
|
34 |
function setManualOrder($manualOrder); |
|
35 |
||
36 |
/** |
|
37 |
* Get manualOrder |
|
38 |
* |
|
39 |
* @return boolean |
|
40 |
*/ |
|
41 |
function getManualOrder(); |
|
42 |
||
|
14
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
4
diff
changeset
|
43 |
/** |
|
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
4
diff
changeset
|
44 |
* Get Tags |
|
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
4
diff
changeset
|
45 |
* |
|
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
4
diff
changeset
|
46 |
*/ |
|
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
4
diff
changeset
|
47 |
function getTags(); |
|
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
4
diff
changeset
|
48 |
|
| 4 | 49 |
|
50 |
||
51 |
} |