piler/webui/controller/folder/edit.php

69 lines
1.7 KiB
PHP
Raw Normal View History

2015-10-02 13:19:40 +02:00
<?php
class ControllerFolderEdit extends Controller {
private $error = array();
public function index(){
$this->id = "content";
$this->template = "folder/edit.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']) {
$this->model_folder_folder->update_folder($this->request->post);
Header("Location: folders.php");
return;
}
if(isset($this->request->get['id']) && $this->request->get['id'] > 0) {
$this->data['folder'] = $this->model_folder_folder->get_folder_by_id($this->request->get['id']);
}
$this->data['page_len'] = get_page_length();
$this->data['extra_folders'] = $this->model_folder_folder->get_folders_for_user();
$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;
}
}
}
?>