diff options
Diffstat (limited to 'BitBook.php')
| -rw-r--r-- | BitBook.php | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/BitBook.php b/BitBook.php index ba4234d..c061d30 100644 --- a/BitBook.php +++ b/BitBook.php @@ -3,7 +3,7 @@ * BitBook class * * @author spider <spider@steelsun.com> - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ * @package wiki */ // +----------------------------------------------------------------------+ @@ -18,7 +18,7 @@ // | Authors: spider <spider@steelsun.com> // +----------------------------------------------------------------------+ // -// $Id: BitBook.php,v 1.3 2005/10/23 14:44:19 squareing Exp $ +// $Id: BitBook.php,v 1.4 2005/12/26 12:27:43 squareing Exp $ /** @@ -34,25 +34,23 @@ define('BITBOOK_CONTENT_TYPE_GUID', 'bitbook' ); * * @abstract * @author spider <spider@steelsun.com> - * @version $Revision: 1.3 $ + * @version $Revision: 1.4 $ * @package wiki * @subpackage BitBook */ class BitBook extends BitPage { - - - function BitBook( $pPageId=NULL, $pContentId=NULL ) { - $this->registerContentType( BITBOOK_CONTENT_TYPE_GUID, array( - 'content_type_guid' => BITBOOK_CONTENT_TYPE_GUID, - 'content_description' => 'Wiki Book', - 'handler_class' => 'BitBook', - 'handler_package' => 'wiki', - 'handler_file' => 'BitBook.php', - 'maintainer_url' => 'http://www.bitweaver.org' - ) ); - BitPage::BitPage( $pPageId, $pContentId ); + function BitBook( $pPageId=NULL, $pContentId=NULL ) { + $this->registerContentType( BITBOOK_CONTENT_TYPE_GUID, array( + 'content_type_guid' => BITBOOK_CONTENT_TYPE_GUID, + 'content_description' => 'Wiki Book', + 'handler_class' => 'BitBook', + 'handler_package' => 'wiki', + 'handler_file' => 'BitBook.php', + 'maintainer_url' => 'http://www.bitweaver.org' + ) ); + BitPage::BitPage( $pPageId, $pContentId ); $this->mContentTypeGuid = BITBOOK_CONTENT_TYPE_GUID; - } + } function getList( &$pListHash ) { $struct = new LibertyStructure(); |
