Source for file CreateArticle.php
Documentation is available at CreateArticle.php
// include the config file
require_once '../util/AlphaConfig.inc';
require_once $config->get('sysRoot'). 'alpha/controller/AlphaController.inc';
require_once $config->get('sysRoot'). 'alpha/controller/EditArticle.php';
require_once $config->get('sysRoot'). 'alpha/view/AlphaView.inc';
require_once $config->get('sysRoot'). 'alpha/model/ArticleObject.inc';
require_once $config->get('sysRoot'). 'alpha/controller/AlphaControllerInterface.inc';
* Controller used to create a new article in the database
* @package alpha::controller
* @author John Collins <dev@alphaframework.org>
* @version $Id: CreateArticle.php 1341 2011-03-17 15:02:02Z johnc $
* @license http://www.opensource.org/licenses/bsd-license.php The BSD License
* @copyright Copyright (c) 2011, John Collins (founder of Alpha Framework).
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the
* following conditions are met:
* * Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the
* following disclaimer in the documentation and/or other
* materials provided with the distribution.
* * Neither the name of the Alpha Framework nor the names
* of its contributors may be used to endorse or promote
* products derived from this software without specific
* prior written permission.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* The new article to be created
private static $logger = null;
* constructor to set up the object
self::$logger = new Logger('CreateArticle');
self::$logger->debug('>>__construct()');
// ensure that the super class constructor is called, indicating the rights group
parent::__construct('Standard');
// set up the title and meta details
$this->setTitle('Create a new Article');
self::$logger->debug('<<__construct');
public function doGET($params) {
self::$logger->debug('>>doGET($params=['. var_export($params, true). '])');
echo $view->createView();
self::$logger->debug('<<doGET');
* Method to handle POST requests
* @throws SecurityException
public function doPOST($params) {
self::$logger->debug('>>doPOST($params=['. var_export($params, true). '])');
// check the hidden security fields before accepting the form POST data
throw new SecurityException('This page cannot accept post data from remote servers!');
if (isset ($params['createBut'])) {
// populate the transient object from post data
$this->BO->populateFromPost();
self::$logger->error($e->getTraceAsString());
echo '<p class="error"><br>Error creating the new article, check the log!</p>';
if (isset ($params['cancelBut'])) {
echo '<p class="error"><br>'. $e->getMessage(). '</p>';
self::$logger->warn($e->getMessage());
self::$logger->debug('<<doPOST');
* Renders the Javascript required in the header by markItUp!
<script type="text/javascript">
var previewURL = "'. FrontController::generateSecureURL('act=PreviewArticle&bo=ArticleObject'). '";
<script type="text/javascript" src="'. $config->get('sysURL'). 'alpha/lib/markitup/jquery.markitup.js"></script>
<script type="text/javascript" src="'. $config->get('sysURL'). 'alpha/lib/markitup/sets/markdown/set.js"></script>
<link rel="stylesheet" type="text/css" href="'. $config->get('sysURL'). 'alpha/lib/markitup/skins/simple/style.css" />
<link rel="stylesheet" type="text/css" href="'. $config->get('sysURL'). 'alpha/lib/markitup/sets/markdown/style.css" />
<script type="text/javascript">
$(document).ready(function() {
$("#text_field_content_0").markItUp(mySettings);
var dialogCoords = [(screen.width/2)-400, (screen.height/2)-300];
//display correct dialog content
$("#helpPage").dialog(dialogOpts);
$(".markItUpButton15").click(
$("#helpPage").dialog("open");
$("#helpPage").dialog(dialogOpts);
$(".markItUpButton15").click(
$("#helpPage").dialog("open");
// now build the new controller
if(basename($_SERVER['PHP_SELF']) == 'CreateArticle.php') {
$controller->doPOST($_REQUEST);
$controller->doGET($_GET);
|