gnu-social/actions/doc.php

116 lines
3.0 KiB
PHP
Raw Normal View History

<?php
2009-01-20 20:29:31 +00:00
/**
* Documentation action.
*
* PHP version 5
*
* @category Action
* @package Laconica
* @author Evan Prodromou <evan@controlyourself.ca>
* @author Robin Millette <millette@controlyourself.ca>
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://laconi.ca/
*
* Laconica - a distributed open-source microblogging tool
* Copyright (C) 2008, Controlez-Vous, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2009-01-20 20:29:31 +00:00
if (!defined('LACONICA')) {
exit(1);
}
/**
* Documentation class.
*
* @category Action
* @package Laconica
* @author Evan Prodromou <evan@controlyourself.ca>
* @author Robin Millette <millette@controlyourself.ca>
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://laconi.ca/
2009-01-20 20:44:03 +00:00
*/
class DocAction extends Action
{
2009-01-20 20:29:31 +00:00
var $filename;
var $title;
2009-01-20 20:29:31 +00:00
/**
* Class handler.
*
2009-01-20 20:29:31 +00:00
* @param array $args array of arguments
*
* @return nothing
2009-01-20 20:44:03 +00:00
*/
function handle($args)
{
parent::handle($args);
2009-01-20 20:29:31 +00:00
$this->title = $this->trimmed('title');
$this->filename = INSTALLDIR.'/doc-src/'.$this->title;
2009-01-20 20:29:31 +00:00
if (!file_exists($this->filename)) {
$this->clientError(_('No such document.'));
return;
}
2009-01-20 20:29:31 +00:00
$this->showPage();
}
// overrrided to add entry-title class
function showPageTitle() {
$this->element('h1', array('class' => 'entry-title'), $this->title());
}
// overrided to add hentry, and content-inner classes
function showContentBlock()
{
$this->elementStart('div', array('id' => 'content', 'class' => 'hentry'));
$this->showPageTitle();
$this->showPageNoticeBlock();
$this->elementStart('div', array('id' => 'content_inner',
'class' => 'entry-content'));
// show the actual content (forms, lists, whatever)
$this->showContent();
$this->elementEnd('div');
$this->elementEnd('div');
}
2009-01-20 20:29:31 +00:00
/**
* Display content.
*
2009-01-20 20:29:31 +00:00
* @return nothing
2009-01-20 20:44:03 +00:00
*/
2009-01-20 20:29:31 +00:00
function showContent()
{
$c = file_get_contents($this->filename);
$output = common_markup_to_html($c);
$this->raw($output);
2009-01-20 20:29:31 +00:00
}
/**
* Page title.
*
2009-01-20 20:29:31 +00:00
* @return page title
2009-01-20 20:44:03 +00:00
*/
2009-01-20 20:29:31 +00:00
function title()
{
return ucfirst($this->title);
}
2009-01-23 09:15:15 +00:00
function isReadOnly()
{
return true;
}
}