96 lines
1.9 KiB
PHP
96 lines
1.9 KiB
PHP
<?php
|
|
class AdminPageController extends Katharsis_Controller_Abstract
|
|
{
|
|
protected $_page;
|
|
|
|
public function init()
|
|
{
|
|
$this->_page = new Page();
|
|
}
|
|
|
|
public function indexAction()
|
|
{
|
|
$this->_view->pages = $this->_page->getPages();
|
|
}
|
|
|
|
public function editAction()
|
|
{
|
|
$this->_view->page = $this->_page->getPage($this->_getParam('pageId'));
|
|
}
|
|
|
|
public function imageAction()
|
|
{
|
|
if($this->_getParam('type') == 'header') {
|
|
$type = 'header';
|
|
} else {
|
|
$type = 'page';
|
|
}
|
|
$this->_view->type = $type;
|
|
|
|
$path = getcwd().'/public/img/' . $type . '/';
|
|
|
|
if(isset($_FILES['myfile']))
|
|
{
|
|
$upload = new Upload();
|
|
|
|
if($type == 'header') {
|
|
$imagePath = $upload->header($_FILES['myfile']);
|
|
} else {
|
|
$imagePath = $upload->page($_FILES['myfile']);
|
|
}
|
|
|
|
$this->_view->imagePath = $imagePath;
|
|
|
|
echo $this->_view->render('AdminPage/uploadsuccess');
|
|
die();
|
|
}
|
|
|
|
|
|
if(isset($_GET['delete']))
|
|
{
|
|
$deleteFile = $path . $_GET['delete'];
|
|
|
|
if(file_exists($deleteFile)) {
|
|
unlink($deleteFile);
|
|
}
|
|
}
|
|
|
|
$ar = array();
|
|
if (is_readable($path) && $handle = opendir($path))
|
|
{
|
|
while (false !== ($file = readdir($handle))) {
|
|
if(is_dir($file)) continue;
|
|
$ar[] = $file;
|
|
}
|
|
|
|
closedir($handle);
|
|
}
|
|
|
|
$this->_view->files = $ar;
|
|
echo $this->_view->render('AdminPage/image');
|
|
|
|
die();
|
|
}
|
|
|
|
public function saveAction()
|
|
{
|
|
$params = $this->_getAllParams();
|
|
|
|
$params['active'] = 0;
|
|
if($this->_getParam('active') && $this->_getParam('active') == 'on')
|
|
{
|
|
$params['active'] = 1;
|
|
}
|
|
|
|
$this->_page->save($params);
|
|
DidgeridooArtwork_Notice::add('Page wurde erfolgreich gespeichert!');
|
|
$this->_location($this->_getParam('url'), 'page');
|
|
}
|
|
|
|
public function deleteAction()
|
|
{
|
|
$this->_page->delete($this->_getParam('pageId'));
|
|
DidgeridooArtwork_Notice::add('Page wurde erfolgreich gelöscht!');
|
|
$this->_location('index');
|
|
}
|
|
}
|