Changeset 3391 for plugins/cleanConfig/index.php
- Timestamp:
- 03/15/16 12:26:49 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/cleanConfig/index.php
r2402 r3391 3 3 # 4 4 # This file is part of clean:config, a plugin for Dotclear 2 5 # Copyright (C) 2007 ,2009,2010Moe (http://gniark.net/)5 # Copyright (C) 2007-2016 Moe (http://gniark.net/) 6 6 # 7 7 # clean:config is free software; you can redistribute it and/or … … 26 26 27 27 l10n::set(dirname(__FILE__).'/locales/'.$_lang.'/admin'); 28 29 $page_title = __('clean:config'); 28 30 29 31 require_once(dirname(__FILE__).'/php-xhtml-table/class.table.php'); … … 53 55 $msg = '<div class="message"><p>'. 54 56 55 http::redirect($p_url.'& settingsdeleted=1&limit='.$limit);57 http::redirect($p_url.'&settingsdeleted=1&limit='.$limit); 56 58 } 57 59 } … … 67 69 <html> 68 70 <head> 69 <title><?php echo __('clean:config'); ?></title>71 <title><?php echo $page_title; ?></title> 70 72 <?php echo dcPage::jsPageTabs($default_tab); ?> 71 73 <style type="text/css"> … … 94 96 </head> 95 97 <body> 96 97 <h2><?php echo html::escapeHTML($core->blog->name); ?> › <?php echo __('clean:config'); ?></h2> 98 <?php 99 echo dcPage::breadcrumb( 100 array( 101 html::escapeHTML($core->blog->name) => '', 102 '<span class="page-title">'.$page_title.'</span>' => '' 103 )); 104 if (!empty($msg)) { 105 dcPage::success($msg); 106 } 107 ?> 98 108 99 <?php 100 if (!empty($msg)) {echo '<p class="message">'.$msg.'</p>';} 101 ?> 102 103 <div class="multi-part" id="blog_settings" title="<?php echo __('blog settings'); ?>"> 109 <div class="multi-part" id="blog_settings" title="<?php echo __('Blog settings'); ?>"> 104 110 <?php echo(cleanconfig::settings('blog')); ?> 105 111 </div> 106 112 107 <div class="multi-part" id="global_settings" title="<?php echo __(' global settings'); ?>">113 <div class="multi-part" id="global_settings" title="<?php echo __('Global settings'); ?>"> 108 114 <?php echo(cleanconfig::settings('global')); ?> 109 115 </div> 110 116 111 <div class="multi-part" id="versions" title="<?php echo __(' versions'); ?>">117 <div class="multi-part" id="versions" title="<?php echo __('Versions'); ?>"> 112 118 <p><?php printf(__('This function has been moved to the %s plugin.'), 113 119 '<a href="http://plugins.dotaddict.org/dc2/details/versionsManager">'.
Note: See TracChangeset
for help on using the changeset viewer.