import v2.0.0.0_RC3 | 2012-07-01
https://github.com/lucanos/CommunityID -> http://www.itadmins.net/archives/357
This commit is contained in:
14
libs/Monkeys/Model/Identifiable.php
Normal file
14
libs/Monkeys/Model/Identifiable.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* @copyright Copyright (C) 2005-2010 Keyboard Monkeys Ltd. http://www.kb-m.com
|
||||
* @license http://creativecommons.org/licenses/BSD/ BSD Licensese
|
||||
* @author Keyboard Monkeys Ltd.
|
||||
* @package Monkeys Framework
|
||||
* @packager Keyboard Monkeys
|
||||
*/
|
||||
|
||||
interface Monkeys_Model_Identifiable
|
||||
{
|
||||
public function getItemId();
|
||||
}
|
20
libs/Monkeys/Model/Indexable.php
Normal file
20
libs/Monkeys/Model/Indexable.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* @copyright Copyright (C) 2005-2010 Keyboard Monkeys Ltd. http://www.kb-m.com
|
||||
* @license http://creativecommons.org/licenses/BSD/ BSD Licensese
|
||||
* @author Keyboard Monkeys Ltd.
|
||||
* @package Monkeys Framework
|
||||
* @packager Keyboard Monkeys
|
||||
*/
|
||||
|
||||
interface Monkeys_Model_Indexable
|
||||
{
|
||||
public function getProjectId();
|
||||
public function getExcerpt();
|
||||
public function getContentWithoutTags();
|
||||
public function isPublished();
|
||||
public function isDraft();
|
||||
public function getTitle();
|
||||
public function getType();
|
||||
}
|
13
libs/Monkeys/Model/Relationable.php
Normal file
13
libs/Monkeys/Model/Relationable.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* @copyright Copyright (C) 2005-2010 Keyboard Monkeys Ltd. http://www.kb-m.com
|
||||
* @license http://creativecommons.org/licenses/BSD/ BSD Licensese
|
||||
* @author Keyboard Monkeys Ltd.
|
||||
* @package Monkeys Framework
|
||||
* @packager Keyboard Monkeys
|
||||
*/
|
||||
|
||||
interface Monkeys_Model_Relationable
|
||||
{
|
||||
}
|
13
libs/Monkeys/Model/Taggable.php
Normal file
13
libs/Monkeys/Model/Taggable.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* @copyright Copyright (C) 2005-2010 Keyboard Monkeys Ltd. http://www.kb-m.com
|
||||
* @license http://creativecommons.org/licenses/BSD/ BSD Licensese
|
||||
* @author Keyboard Monkeys Ltd.
|
||||
* @package Monkeys Framework
|
||||
* @packager Keyboard Monkeys
|
||||
*/
|
||||
|
||||
interface Monkeys_Model_Taggable extends Monkeys_Model_Identifiable
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user