41 lines
878 B
PHP
41 lines
878 B
PHP
<?php
|
|
|
|
/**
|
|
* PanaceaWikiPageObject
|
|
*
|
|
* @package Panacea
|
|
* @subpackage Library
|
|
* @author Tommy Montgomery
|
|
* @since 2008-10-19
|
|
*/
|
|
|
|
/** Bootstraps the NowhereConcave framework */
|
|
require_once 'NowhereConcave/bootstrap.php';
|
|
|
|
/**
|
|
* Composite object of {@link WikiPage} and {@link WikiHistory}
|
|
*
|
|
* @package Panacea
|
|
* @subpackage Library
|
|
* @author Tommy Montgomery
|
|
* @since 2008-10-19
|
|
*/
|
|
class PanaceaWikiPageObject extends WikiPageObject {
|
|
|
|
/**
|
|
* Creates a new {@link PanaceaWikiPageObject} with the specified
|
|
* {@link WikiPage}
|
|
*
|
|
* @author Tommy Montgomery
|
|
* @since 2008-10-19
|
|
* @uses PanaceaWikiParser::getInstance()
|
|
*
|
|
* @param WikiPage $page A wiki page
|
|
*/
|
|
public function __construct(WikiPage $page) {
|
|
parent::__construct($page, PanaceaWikiParser::getInstance());
|
|
}
|
|
|
|
}
|
|
|
|
?>
|