piler/webui/controller/folder/list.php

73 lines
1.7 KiB
PHP
Raw Normal View History

2012-09-15 15:30:35 +02:00
<?php
class ControllerFolderList extends Controller {
private $error = array();
public function index(){
$this->id = "content";
$this->template = "folder/list.tpl";
$this->layout = "common/layout";
$request = Registry::get('request');
$db = Registry::get('db');
$this->load->model('folder/folder');
$this->document->title = $this->data['text_folders'];
if(isset($this->request->post['name']) && $this->request->post['name']) {
2015-09-18 14:56:09 +02:00
$this->model_folder_folder->add_folder($this->request->post['name']);
2012-09-15 15:30:35 +02:00
Header("Location: folders.php");
return;
}
if(isset($this->request->get['id']) && $this->request->get['id'] > 0) {
2015-09-18 14:56:09 +02:00
$this->model_folder_folder->remove_folder($this->request->get['id']);
2012-09-15 15:30:35 +02:00
Header("Location: folders.php");
return;
}
$this->data['page_len'] = get_page_length();
2015-09-18 14:56:09 +02:00
$this->data['extra_folders'] = $this->model_folder_folder->get_folders_for_user();
2012-09-15 15:30:35 +02:00
$this->render();
}
private function validate() {
if(!isset($this->request->post['password']) || !isset($this->request->post['password2']) ) {
$this->error['password'] = $this->data['text_missing_password'];
}
if(strlen(@$this->request->post['password']) < MIN_PASSWORD_LENGTH || strlen(@$this->request->post['password2']) < MIN_PASSWORD_LENGTH) {
$this->error['password'] = $this->data['text_invalid_password'];
}
if($this->request->post['password'] != $this->request->post['password2']) {
$this->error['password'] = $this->data['text_password_mismatch'];
}
if (!$this->error) {
return true;
} else {
return false;
}
}
}
?>