2015-11-30 21:30:54 +00:00
|
|
|
<?php
|
2015-12-23 12:44:56 +00:00
|
|
|
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
__ __ _ _____ _ _ __ __ _ _ _
|
|
|
|
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
|
|
|
|
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
|
|
|
|
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
|
|
|
|
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
|
|
|
|
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
|
|
|
|
| |
|
|
|
|
|_|
|
|
|
|
/-------------------------------------------------------------------------------------------------------------------------------/
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
@version 1.3.4
|
2016-07-22 10:09:43 +00:00
|
|
|
@build 17th July, 2016
|
2015-11-30 21:30:54 +00:00
|
|
|
@created 22nd October, 2015
|
|
|
|
@package Sermon Distributor
|
|
|
|
@subpackage help.php
|
|
|
|
@author Llewellyn van der Merwe <https://www.vdm.io/>
|
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
2015-12-23 12:44:56 +00:00
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
|
|
|
|
A sermon distributor that links to Dropbox.
|
|
|
|
|
|
|
|
/-----------------------------------------------------------------------------------------------------------------------------*/
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
// import Joomla controllerform library
|
|
|
|
jimport('joomla.application.component.controller');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sermondistributor Help Controller
|
|
|
|
*/
|
|
|
|
class SermondistributorControllerHelp extends JControllerLegacy
|
|
|
|
{
|
|
|
|
public function __construct($config)
|
|
|
|
{
|
|
|
|
parent::__construct($config);
|
|
|
|
// load the tasks
|
|
|
|
$this->registerTask('getText', 'help');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function help()
|
|
|
|
{
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
$jinput = JFactory::getApplication()->input;
|
|
|
|
// Check Token!
|
|
|
|
$token = JSession::getFormToken();
|
|
|
|
$call_token = $jinput->get('token', 0, 'ALNUM');
|
|
|
|
if($token == $call_token){
|
|
|
|
$task = $this->getTask();
|
|
|
|
switch($task){
|
|
|
|
case 'getText':
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$idValue = $jinput->get('id', 0, 'INT');
|
|
|
|
if($idValue)
|
|
|
|
{
|
|
|
|
$result = $this->getHelpDocumentText($idValue);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$result = '';
|
|
|
|
}
|
|
|
|
echo $result;
|
|
|
|
// stop execution gracefully
|
|
|
|
jexit();
|
|
|
|
}
|
|
|
|
catch(Exception $e)
|
|
|
|
{
|
|
|
|
// stop execution gracefully
|
|
|
|
jexit();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// stop execution gracefully
|
|
|
|
jexit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getHelpDocumentText($id)
|
|
|
|
{
|
|
|
|
$db = JFactory::getDbo();
|
|
|
|
$query = $db->getQuery(true);
|
|
|
|
$query->select(array('a.title','a.content'));
|
|
|
|
$query->from('#__sermondistributor_help_document AS a');
|
|
|
|
$query->where('a.id = '.(int) $id);
|
|
|
|
$query->where('a.published = 1');
|
|
|
|
$query->where('a.location = 2');
|
|
|
|
$db->setQuery($query);
|
|
|
|
$db->execute();
|
|
|
|
if($db->getNumRows())
|
|
|
|
{
|
|
|
|
$text = array();
|
|
|
|
$document = $db->loadObject();
|
|
|
|
// fix image issue
|
|
|
|
$images['src="images'] = 'src="'.JURI::root().'images';
|
|
|
|
$images["src='images"] = "src='".JURI::root()."images";
|
|
|
|
$images['src="/images'] = 'src="'.JURI::root().'images';
|
|
|
|
$images["src='/images"] = "src='".JURI::root()."images";
|
|
|
|
// set document template
|
|
|
|
$text[] = "<!doctype html>";
|
|
|
|
$text[] = '<html>';
|
|
|
|
$text[] = "<head>";
|
|
|
|
$text[] = '<meta charset="utf-8">';
|
|
|
|
$text[] = "<title>".$document->title."</title>";
|
|
|
|
$text[] = '<link type="text/css" href="'.JURI::root().'media/com_sermondistributor/uikit/css/uikit.gradient.min.css" rel="stylesheet"></link>';
|
|
|
|
$text[] = '<script type="text/javascript" src="'.JURI::root().'media/com_sermondistributor/uikit/js/uikit.min.js"></script>';
|
|
|
|
$text[] = "</head>";
|
|
|
|
$text[] = '<body><br />';
|
|
|
|
$text[] = '<div class="uk-container uk-container-center uk-grid-collapse">';
|
|
|
|
$text[] = '<div class="uk-panel uk-width-1-1 uk-panel-box uk-panel-box-primary">';
|
|
|
|
// build the help text
|
2016-03-07 03:21:52 +00:00
|
|
|
$text[] = '<h1 class="uk-panel-title">'.$document->title."</h1>";
|
2015-11-30 21:30:54 +00:00
|
|
|
$text[] = str_replace(array_keys($images),array_values($images),$document->content);
|
|
|
|
// end template
|
2016-03-07 03:21:52 +00:00
|
|
|
$text[] = '</div><br /><br />';
|
2015-11-30 21:30:54 +00:00
|
|
|
$text[] = '</div>';
|
|
|
|
$text[] = "</body>";
|
|
|
|
$text[] = "</html>";
|
|
|
|
|
|
|
|
return implode("\n",$text);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|