1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/app/widgets/AdminMain/AdminMain.php
2015-09-10 15:41:45 +02:00

103 lines
2.6 KiB
PHP

<?php
/**
* @package Widgets
*
* @file AdminMain.php
* This file is part of Movim.
*
* @brief The main configuration on Movim
*
* @author Jaussoin Timothée <edhelas@movim.eu>
* Copyright (C)2014 Movim project
*
* See COPYING for licensing information.
*/
class AdminMain extends WidgetBase
{
function load() {
$this->addjs('admin.js');
$form = $_POST;
$cd = new \Modl\ConfigDAO();
$config = $cd->get();
if(isset($form) && !empty($form)) {
if(isset($form['password'])
&& $form['password'] != '' && $form['repassword'] != ''
&& $form['password'] == $form['repassword']) {
$form['password'] = sha1($form['password']);
} else {
$form['password'] = $config->password;
}
unset($form['repassword']);
if(isset($form['rewrite']) && $form['rewrite'] == 'on') {
$form['rewrite'] = 1;
} else {
$form['rewrite'] = 0;
}
foreach($form as $key => $value) {
$config->$key = $value;
}
$cd->set($config);
//set timezone
if(isset($form['timezone'])) {
date_default_timezone_set($form['timezone']);
}
}
}
public function testBosh($url)
{
return requestURL($url, 1);
}
public function date($timezone)
{
$t = new DateTimeZone($timezone);
$c = new DateTime(null, $t);
$current_time = $c->format('D M j Y G:i:s');
return $current_time;
}
function display()
{
$cd = new \Modl\ConfigDAO();
$config = $cd->get();
$l = Locale::start();
$this->view->assign('conf', $cd->get());
$this->view->assign('logs',
array(
0 => $this->__('log.empty'),
1 => $this->__('log.syslog'),
2 => $this->__('log.syslog_files'))
);
$this->view->assign('bosh_info4',
$this->__('bosh.info4', '<a href="http://wiki.movim.eu/en:install">', '</a>'));
$json = requestURL(MOVIM_API.'websockets', 1);
$json = json_decode($json);
if(isset($json) && $json->status != 404) {
$this->view->assign('websockets', $json);
}
$this->view->assign('server_rewrite', false);
if(isset($_SERVER['HTTP_MOD_REWRITE']) && $_SERVER['HTTP_MOD_REWRITE']) {
$this->view->assign('server_rewrite', true);
}
$this->view->assign('timezones', getTimezoneList());
$this->view->assign('langs', $l->getList());
}
}