updating code to conform to the naming scheme
This commit is contained in:
parent
e0bec3a5c8
commit
4222880c0d
@ -23,14 +23,14 @@
|
|||||||
$path = dirname(__FILE__);
|
$path = dirname(__FILE__);
|
||||||
$file = '';
|
$file = '';
|
||||||
switch ($className) {
|
switch ($className) {
|
||||||
case 'WikiControllerFactory':
|
case 'PanaceaControllerFactory':
|
||||||
case 'WikiPageController':
|
case 'PanaceaPageController':
|
||||||
case 'WikiViewFactory':
|
case 'PanaceaViewFactory':
|
||||||
$file = "$path/inc/$className.php";
|
$file = "$path/lib/$className.php";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'WikiPageView':
|
case 'PanaceaPageView':
|
||||||
$file = "$path/inc/views/$className.php";
|
$file = "$path/lib/views/$className.php";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* WikiControllerFactory
|
* PanaceaControllerFactory
|
||||||
*
|
*
|
||||||
* @package Panacea
|
* @package Panacea
|
||||||
* @author Tommy Montgomery
|
* @author Tommy Montgomery
|
||||||
* @since 2008-10-05
|
* @since 2008-10-05
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** Bootstraps the NowhereConcave framework */
|
/** Bootstraps the NowhereConcave framework */
|
||||||
@ -14,16 +14,16 @@
|
|||||||
/**
|
/**
|
||||||
* Creates a {@link Controller}
|
* Creates a {@link Controller}
|
||||||
*
|
*
|
||||||
* @package Panacea
|
* @package Panacea
|
||||||
* @author Tommy Montgomery
|
* @author Tommy Montgomery
|
||||||
* @since 2008-10-05
|
* @since 2008-10-05
|
||||||
*/
|
*/
|
||||||
class WikiControllerFactory extends ControllerFactory {
|
class PanaceaControllerFactory extends ControllerFactory {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The <kbd>WikiControllerFactory</kbd> instance
|
* The <kbd>PanaceaControllerFactory</kbd> instance
|
||||||
*
|
*
|
||||||
* @var Dispatcher
|
* @var PanaceaControllerFactory
|
||||||
*/
|
*/
|
||||||
protected static $instance = null;
|
protected static $instance = null;
|
||||||
|
|
||||||
@ -33,7 +33,7 @@
|
|||||||
* @author Tommy Montgomery
|
* @author Tommy Montgomery
|
||||||
* @since 2008-10-05
|
* @since 2008-10-05
|
||||||
*
|
*
|
||||||
* @return ControllerFactory
|
* @return PanaceaControllerFactory
|
||||||
*/
|
*/
|
||||||
public static function getInstance() {
|
public static function getInstance() {
|
||||||
if (self::$instance === null) {
|
if (self::$instance === null) {
|
||||||
@ -52,14 +52,14 @@
|
|||||||
*
|
*
|
||||||
* @param array $uriFragments The URI fragments
|
* @param array $uriFragments The URI fragments
|
||||||
* @throws {@link ClassNotFoundException}
|
* @throws {@link ClassNotFoundException}
|
||||||
* @return WikiPageController
|
* @return PanaceaPageController
|
||||||
*/
|
*/
|
||||||
public function getController(array $uriFragments) {
|
public function getController(array $uriFragments) {
|
||||||
if (count($uriFragments) !== 1) {
|
if (count($uriFragments) !== 1) {
|
||||||
throw new InvalidTypeException(1, 'array of size 1', $uriFragments);
|
throw new InvalidTypeException(1, 'array of size 1', $uriFragments);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new WikiPageController($uriFragments[0]);
|
return new PanaceaPageController($uriFragments[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,31 +1,31 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* WikiPageController
|
* PanaceaPageController
|
||||||
*
|
*
|
||||||
* @package Panacea
|
* @package Panacea
|
||||||
* @author Tommy Montgomery
|
* @author Tommy Montgomery
|
||||||
* @since 2008-10-05
|
* @since 2008-10-05
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** Bootstraps the NowhereConcave framework */
|
/** Bootstraps the NowhereConcave framework */
|
||||||
require_once 'NowhereConcave/bootstrap.php';
|
require_once 'NowhereConcave/bootstrap.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Wiki page controller
|
* Panacea page controller
|
||||||
*
|
*
|
||||||
* @package Panacea
|
* @package Panacea
|
||||||
* @author Tommy Montgomery
|
* @author Tommy Montgomery
|
||||||
* @since 2008-10-05
|
* @since 2008-10-05
|
||||||
*/
|
*/
|
||||||
class WikiPageController extends Controller {
|
class PanaceaPageController extends Controller {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new {@link Controller}
|
* Creates a new {@link Controller}
|
||||||
*
|
*
|
||||||
* @author Tommy Montgomery
|
* @author Tommy Montgomery
|
||||||
* @since 2008-10-05
|
* @since 2008-10-05
|
||||||
* @uses DefaultViewFactory::getInstance()
|
* @uses PanaceaViewFactory::getInstance()
|
||||||
*
|
*
|
||||||
* @param string $page Name of the page (view)
|
* @param string $page Name of the page (view)
|
||||||
* @param int $viewType One of the {@link View}<kbd>::VIEWTYPE_*</kbd> constants
|
* @param int $viewType One of the {@link View}<kbd>::VIEWTYPE_*</kbd> constants
|
||||||
@ -33,7 +33,7 @@
|
|||||||
*/
|
*/
|
||||||
public function __construct($page = '', $viewType = View::VIEWTYPE_HTML) {
|
public function __construct($page = '', $viewType = View::VIEWTYPE_HTML) {
|
||||||
parent::__construct($page, $viewType);
|
parent::__construct($page, $viewType);
|
||||||
$this->viewFactory = WikiViewFactory::getInstance();
|
$this->viewFactory = PanaceaViewFactory::getInstance();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* WikiViewFactory
|
* PanaceaViewFactory
|
||||||
*
|
*
|
||||||
* @package Panacea
|
* @package Panacea
|
||||||
* @author Tommy Montgomery
|
* @author Tommy Montgomery
|
||||||
* @since 2008-10-05
|
* @since 2008-10-05
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** Bootstraps the NowhereConcave framework */
|
/** Bootstraps the NowhereConcave framework */
|
||||||
@ -14,11 +14,11 @@
|
|||||||
/**
|
/**
|
||||||
* Factory for generating {@link View}s
|
* Factory for generating {@link View}s
|
||||||
*
|
*
|
||||||
* @package Panacea
|
* @package Panacea
|
||||||
* @author Tommy Montgomery
|
* @author Tommy Montgomery
|
||||||
* @since 2008-10-05
|
* @since 2008-10-05
|
||||||
*/
|
*/
|
||||||
class WikiViewFactory extends ViewFactory {
|
class PanaceaViewFactory extends ViewFactory {
|
||||||
|
|
||||||
protected static $instance = null;
|
protected static $instance = null;
|
||||||
|
|
||||||
@ -49,7 +49,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
//parse out special pages here
|
//parse out special pages here
|
||||||
$viewName = 'WikiPageView';
|
$viewName = 'PanaceaPageView';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$refclass = new ReflectionClass($viewName);
|
$refclass = new ReflectionClass($viewName);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* WikiPageView
|
* PanaceaPageView
|
||||||
*
|
*
|
||||||
* @package Panacea
|
* @package Panacea
|
||||||
* @subpackage Views
|
* @subpackage Views
|
||||||
@ -20,7 +20,7 @@
|
|||||||
* @author Tommy Montgomery
|
* @author Tommy Montgomery
|
||||||
* @since 2008-10-05
|
* @since 2008-10-05
|
||||||
*/
|
*/
|
||||||
class WikiPageView extends View {
|
class PanaceaPageView extends View {
|
||||||
|
|
||||||
protected $wikiText;
|
protected $wikiText;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user