121 lines
4.0 KiB
PHP
121 lines
4.0 KiB
PHP
|
<?php
|
||
|
# -- BEGIN LICENSE BLOCK ----------------------------------
|
||
|
#
|
||
|
# This file is part of pacKman, a plugin for Dotclear 2.
|
||
|
#
|
||
|
# Copyright (c) 2009-2013 Jean-Christian Denis and contributors
|
||
|
# contact@jcdenis.fr http://jcd.lv
|
||
|
#
|
||
|
# Licensed under the GPL version 2.0 license.
|
||
|
# A copy of this license is available in LICENSE file or at
|
||
|
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
||
|
#
|
||
|
# -- END LICENSE BLOCK ------------------------------------
|
||
|
|
||
|
if (!defined('DC_CONTEXT_MODULE')) {
|
||
|
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
$redir = empty($_REQUEST['redir']) ?
|
||
|
$list->getURL().'#plugins' : $_REQUEST['redir'];
|
||
|
|
||
|
# -- Get settings --
|
||
|
$core->blog->settings->addNamespace('pacKman');
|
||
|
$s = $core->blog->settings->pacKman;
|
||
|
|
||
|
$packman_pack_nocomment = $s->packman_pack_nocomment;
|
||
|
$packman_pack_overwrite = $s->packman_pack_overwrite;
|
||
|
$packman_pack_filename = $s->packman_pack_filename;
|
||
|
$packman_secondpack_filename = $s->packman_secondpack_filename;
|
||
|
$packman_pack_repository = $s->packman_pack_repository;
|
||
|
$packman_pack_excludefiles = $s->packman_pack_excludefiles;
|
||
|
|
||
|
# -- Set settings --
|
||
|
if (!empty($_POST['save'])) {
|
||
|
|
||
|
try {
|
||
|
$packman_pack_nocomment = !empty($_POST['packman_pack_nocomment']);
|
||
|
$packman_pack_overwrite = !empty($_POST['packman_pack_overwrite']);
|
||
|
$packman_pack_filename = $_POST['packman_pack_filename'];
|
||
|
$packman_secondpack_filename = $_POST['packman_secondpack_filename'];
|
||
|
$packman_pack_repository = path::real($_POST['packman_pack_repository'], false);
|
||
|
$packman_pack_excludefiles = $_POST['packman_pack_excludefiles'];
|
||
|
|
||
|
$check = libPackman::is_configured(
|
||
|
$core,
|
||
|
$packman_pack_repository,
|
||
|
$packman_pack_filename,
|
||
|
$packman_secondpack_filename
|
||
|
);
|
||
|
|
||
|
if ($check) {
|
||
|
|
||
|
$s->put('packman_pack_nocomment', $packman_pack_nocomment);
|
||
|
$s->put('packman_pack_overwrite', $packman_pack_overwrite);
|
||
|
$s->put('packman_pack_filename', $packman_pack_filename);
|
||
|
$s->put('packman_secondpack_filename', $packman_secondpack_filename);
|
||
|
$s->put('packman_pack_repository', $packman_pack_repository);
|
||
|
$s->put('packman_pack_excludefiles', $packman_pack_excludefiles);
|
||
|
|
||
|
dcPage::addSuccessNotice(
|
||
|
__('Configuration has been successfully updated.')
|
||
|
);
|
||
|
http::redirect(
|
||
|
$list->getURL('module=pacKman&conf=1&redir='.
|
||
|
$list->getRedir())
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
catch (Exception $e) {
|
||
|
$core->error->add($e->getMessage());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
# -- Display form --
|
||
|
echo '
|
||
|
|
||
|
<div class="fieldset">
|
||
|
<h4>'.__('Root').'</h4>
|
||
|
|
||
|
<p><label for="packman_pack_repository">'.__('Path to repository:').' '.
|
||
|
form::field('packman_pack_repository', 65, 255, $packman_pack_repository, 'maximal').
|
||
|
'</label></p>'.
|
||
|
'<p class="form-note">'.sprintf(__('Preconization: %s'), $core->blog->public_path ?
|
||
|
$core->blog->public_path : __("Blog's public directory")
|
||
|
).'</p>
|
||
|
</div>
|
||
|
|
||
|
<div class="fieldset">
|
||
|
<h4>'.__('Files').'</h4>
|
||
|
|
||
|
<p><label for="packman_pack_filename">'.__('Name of exported package:').' '.
|
||
|
form::field('packman_pack_filename', 65, 255, $packman_pack_filename, 'maximal').
|
||
|
'</label></p>
|
||
|
<p class="form-note">'.sprintf(__('Preconization: %s'), '%type%-%id%-%version%').'</p>
|
||
|
|
||
|
<p><label for="packman_secondpack_filename">'.__('Name of second exported package:').' '.
|
||
|
form::field('packman_secondpack_filename', 65, 255, $packman_secondpack_filename, 'maximal').
|
||
|
'</label></p>
|
||
|
<p class="form-note">'.sprintf(__('Preconization: %s'), '%type%-%id%').'</p>
|
||
|
|
||
|
<p><label class="classic" for="packman_pack_overwrite">'.
|
||
|
form::checkbox('packman_pack_overwrite', 1, $packman_pack_overwrite).' '.
|
||
|
__('Overwrite existing package').'</label></p>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="fieldset">
|
||
|
<h4>'.__('Content').'</h4>
|
||
|
|
||
|
<p><label for="packman_pack_excludefiles">'.__('Extra files to exclude from package:').' '.
|
||
|
form::field('packman_pack_excludefiles', 65, 255, $packman_pack_excludefiles, 'maximal').
|
||
|
'</label></p>
|
||
|
<p class="form-note">'.sprintf(__('Preconization: %s'), '*.zip,*.tar,*.tar.gz').'</p>
|
||
|
|
||
|
<p><label class="classic" for="packman_pack_nocomment">'.
|
||
|
form::checkbox('packman_pack_nocomment', 1, $packman_pack_nocomment).' '.
|
||
|
__('Remove comments from files').'</label></p>
|
||
|
|
||
|
</div>';
|