blog->settings->__get(self::$pid); $s->put('pack_nocomment', $pack_nocomment); $s->put('pack_fixnewline', $pack_fixnewline); $s->put('pack_overwrite', $pack_overwrite); $s->put('pack_filename', $pack_filename); $s->put('secondpack_filename', $secondpack_filename); $s->put('pack_repository', $pack_repository); $s->put('pack_excludefiles', $pack_excludefiles); dcPage::addSuccessNotice( __('Configuration has been successfully updated.') ); http::redirect( dcCore::app()->admin->__get('list')->getURL('module=' . self::$pid . '&conf=1&redir=' . dcCore::app()->admin->__get('list')->getRedir()) ); } } catch (Exception $e) { dcCore::app()->error->add($e->getMessage()); } return true; } public static function render(): void { if (!self::$init) { return; } # -- Get settings -- $s = dcCore::app()->blog->settings->__get(self::$pid); # -- Display form -- echo '

' . __('Root') . '

' . '

' . sprintf( __('Preconization: %s'), dcCore::app()->blog->public_path ? dcCore::app()->blog->public_path : __("Blog's public directory") ) . '
' . __('Leave it empty to use Dotclear VAR directory') . '

' . __('Files') . '

' . sprintf(__('Preconization: %s'), '%type%-%id%') . '

' . sprintf(__('Preconization: %s'), '%type%-%id%-%version%') . '

' . __('Content') . '

' . sprintf(__('Preconization: %s'), '*.zip,*.tar,*.tar.gz') . '

'; } }