Dotclear

source: admin/index.php @ 3412:a07474dc68c1

Revision 3412:a07474dc68c1, 13.6 KB checked in by franck <carnet.franck.paul@…>, 9 years ago (diff)

Separate dashboard items boxes (usually official DC infos/links) from dashboard contents boxes (usually 3rd party plugins), get advantage of flexbox system to display all of them

Line 
1<?php
2# -- BEGIN LICENSE BLOCK ---------------------------------------
3#
4# This file is part of Dotclear 2.
5#
6# Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear
7# Licensed under the GPL version 2.0 license.
8# See LICENSE file or
9# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
10#
11# -- END LICENSE BLOCK -----------------------------------------
12
13if (!empty($_GET['pf'])) {
14     require dirname(__FILE__).'/../inc/load_plugin_file.php';
15     exit;
16}
17
18if (!empty($_GET['vf'])) {
19     require dirname(__FILE__).'/../inc/load_var_file.php';
20     exit;
21}
22
23require dirname(__FILE__).'/../inc/admin/prepend.php';
24
25if (!empty($_GET['default_blog'])) {
26     try {
27          $core->setUserDefaultBlog($core->auth->userID(),$core->blog->id);
28          $core->adminurl->redirect("admin.home");
29     } catch (Exception $e) {
30          $core->error->add($e->getMessage());
31     }
32}
33
34dcPage::check('usage,contentadmin');
35
36if ($core->plugins->disableDepModules($core->adminurl->get('admin.home',array()))) {
37     exit;
38}
39
40# Logout
41if (!empty($_GET['logout'])) {
42     $core->session->destroy();
43     if (isset($_COOKIE['dc_admin'])) {
44          unset($_COOKIE['dc_admin']);
45          setcookie('dc_admin',false,-600,'','',DC_ADMIN_SSL);
46     }
47     $core->adminurl->redirect("admin.auth");
48     exit;
49}
50
51# Plugin install
52$plugins_install = $core->plugins->installModules();
53
54# Check dashboard module prefs
55$ws = $core->auth->user_prefs->addWorkspace('dashboard');
56if (!$core->auth->user_prefs->dashboard->prefExists('doclinks')) {
57     if (!$core->auth->user_prefs->dashboard->prefExists('doclinks',true)) {
58          $core->auth->user_prefs->dashboard->put('doclinks',true,'boolean','',null,true);
59     }
60     $core->auth->user_prefs->dashboard->put('doclinks',true,'boolean');
61}
62if (!$core->auth->user_prefs->dashboard->prefExists('dcnews')) {
63     if (!$core->auth->user_prefs->dashboard->prefExists('dcnews',true)) {
64          $core->auth->user_prefs->dashboard->put('dcnews',true,'boolean','',null,true);
65     }
66     $core->auth->user_prefs->dashboard->put('dcnews',true,'boolean');
67}
68if (!$core->auth->user_prefs->dashboard->prefExists('quickentry')) {
69     if (!$core->auth->user_prefs->dashboard->prefExists('quickentry',true)) {
70          $core->auth->user_prefs->dashboard->put('quickentry',false,'boolean','',null,true);
71     }
72     $core->auth->user_prefs->dashboard->put('quickentry',false,'boolean');
73}
74
75// Handle folded/unfolded sections in admin from user preferences
76$ws = $core->auth->user_prefs->addWorkspace('toggles');
77if (!$core->auth->user_prefs->toggles->prefExists('unfolded_sections')) {
78     $core->auth->user_prefs->toggles->put('unfolded_sections','','string','Folded sections in admin',null,true);
79}
80
81
82# Dashboard icons
83$__dashboard_icons = new ArrayObject();
84
85$favs = $core->favs->getUserFavorites();
86$core->favs->appendDashboardIcons($__dashboard_icons);
87
88# Check plugins and themes update from repository
89function dc_check_store_update($mod, $url, $img, $icon)
90{
91     $repo = new dcStore($mod, $url);
92     $upd = $repo->get(true);
93     if (!empty($upd)) {
94          $icon[0] .= '<br />'.sprintf(__('An update is available', '%s updates are available.', count($upd)),count($upd));
95          $icon[1] .= '#update';
96          $icon[2] = 'images/menu/'.$img.'-b-update.png';
97     }
98}
99if (isset($__dashboard_icons['plugins'])) {
100     dc_check_store_update($core->plugins, $core->blog->settings->system->store_plugin_url, 'plugins', $__dashboard_icons['plugins']);
101}
102if (isset($__dashboard_icons['blog_theme'])) {
103     $themes = new dcThemes($core);
104     $themes->loadModules($core->blog->themes_path, null);
105     dc_check_store_update($themes, $core->blog->settings->system->store_theme_url, 'blog-theme', $__dashboard_icons['blog_theme']);
106}
107
108# Latest news for dashboard
109$__dashboard_items = new ArrayObject(array(new ArrayObject(),new ArrayObject()));
110
111$dashboardItem = 0;
112
113if ($core->auth->user_prefs->dashboard->dcnews) {
114     try
115     {
116          if (empty($__resources['rss_news'])) {
117               throw new Exception();
118          }
119
120          $feed_reader = new feedReader;
121          $feed_reader->setCacheDir(DC_TPL_CACHE);
122          $feed_reader->setTimeout(2);
123          $feed_reader->setUserAgent('Dotclear - http://www.dotclear.org/');
124          $feed = $feed_reader->parse($__resources['rss_news']);
125          if ($feed)
126          {
127               $latest_news = '<div class="box medium dc-box"><h3>'.__('Dotclear news').'</h3><dl id="news">';
128               $i = 1;
129               foreach ($feed->items as $item)
130               {
131                    $dt = isset($item->link) ? '<a href="'.$item->link.'" class="outgoing" title="'.$item->title.'">'.
132                         $item->title.' <img src="images/outgoing-blue.png" alt="" /></a>' : $item->title;
133
134                    if ($i < 3) {
135                         $latest_news .=
136                         '<dt>'.$dt.'</dt>'.
137                         '<dd><p><strong>'.dt::dt2str(__('%d %B %Y:'),$item->pubdate,'Europe/Paris').'</strong> '.
138                         '<em>'.text::cutString(html::clean($item->content),120).'...</em></p></dd>';
139                    } else {
140                         $latest_news .=
141                         '<dt>'.$dt.'</dt>'.
142                         '<dd>'.dt::dt2str(__('%d %B %Y:'),$item->pubdate,'Europe/Paris').'</dd>';
143                    }
144                    $i++;
145                    if ($i > 2) { break; }
146               }
147               $latest_news .= '</dl></div>';
148               $__dashboard_items[$dashboardItem][] = $latest_news;
149               $dashboardItem++;
150          }
151     }
152     catch (Exception $e) {}
153}
154
155# Documentation links
156if ($core->auth->user_prefs->dashboard->doclinks) {
157     if (!empty($__resources['doc']))
158     {
159          $doc_links = '<div class="box small dc-box"><h3>'.__('Documentation and support').'</h3><ul>';
160
161          foreach ($__resources['doc'] as $k => $v) {
162               $doc_links .= '<li><a class="outgoing" href="'.$v.'" title="'.$k.'">'.$k.
163               ' <img src="images/outgoing-blue.png" alt="" /></a></li>';
164          }
165
166          $doc_links .= '</ul></div>';
167          $__dashboard_items[$dashboardItem][] = $doc_links;
168          $dashboardItem++;
169     }
170}
171
172$core->callBehavior('adminDashboardItems', $core, $__dashboard_items);
173
174# Dashboard content
175$__dashboard_contents = new ArrayObject(array(new ArrayObject,new ArrayObject));
176$core->callBehavior('adminDashboardContents', $core, $__dashboard_contents);
177
178# Editor stuff
179$admin_post_behavior = '';
180if ($core->auth->user_prefs->dashboard->quickentry) {
181     if ($core->auth->check('usage,contentadmin',$core->blog->id))
182     {
183          $post_format = $core->auth->getOption('post_format');
184          $post_editor = $core->auth->getOption('editor');
185          if ($post_editor && !empty($post_editor[$post_format])) {
186               // context is not post because of tags not available
187               $admin_post_behavior = $core->callBehavior('adminPostEditor', $post_editor[$post_format], 'quickentry', array('#post_content'),$post_format);
188          }
189     }
190}
191
192/* DISPLAY
193-------------------------------------------------------- */
194dcPage::open(__('Dashboard'),
195     dcPage::jsLoad('js/_index.js').
196     $admin_post_behavior.
197     # --BEHAVIOR-- adminDashboardHeaders
198     $core->callBehavior('adminDashboardHeaders'),
199     dcPage::breadcrumb(
200          array(
201          __('Dashboard').' : '.html::escapeHTML($core->blog->name) => ''
202          ),
203          array('home_link' =>false)
204     )
205);
206
207# Dotclear updates notifications
208if ($core->auth->isSuperAdmin() && !DC_NOT_UPDATE && is_readable(DC_DIGESTS))
209{
210     $updater = new dcUpdate(DC_UPDATE_URL,'dotclear',DC_UPDATE_VERSION,DC_TPL_CACHE.'/versions');
211     $new_v = $updater->check(DC_VERSION);
212     $version_info = $new_v ? $updater->getInfoURL() : '';
213
214     if ($updater->getNotify() && $new_v) {
215          // Check PHP version required
216          if (version_compare(phpversion(),$updater->getPHPVersion()) >= 0) {
217               echo
218               '<div class="dc-update"><h3>'.sprintf(__('Dotclear %s is available!'),$new_v).'</h3> '.
219               '<p><a class="button submit" href="'.$core->adminurl->get("admin.update").'">'.sprintf(__('Upgrade now'),$new_v).'</a> '.
220               '<a class="button" href="'.$core->adminurl->get("admin.update", array('hide_msg' => 1)).'">'.__('Remind me later').'</a>'.
221               ($version_info ? ' </p>'.
222               '<p class="updt-info"><a href="'.$version_info.'">'.__('Information about this version').'</a>' : '').'</p>'.
223               '</div>';
224          }
225     }
226}
227
228if ($core->auth->getInfo('user_default_blog') != $core->blog->id && $core->auth->getBlogCount() > 1) {
229     echo
230     '<p><a href="'.$core->adminurl->get("admin.home",array('default_blog' => 1)).'" class="button">'.__('Make this blog my default blog').'</a></p>';
231}
232
233if ($core->blog->status == 0) {
234     echo '<p class="static-msg">'.__('This blog is offline').'.</p>';
235} elseif ($core->blog->status == -1) {
236     echo '<p class="static-msg">'.__('This blog is removed').'.</p>';
237}
238
239if (!defined('DC_ADMIN_URL') || !DC_ADMIN_URL) {
240     echo
241     '<p class="static-msg">'.
242     sprintf(__('%s is not defined, you should edit your configuration file.'),'DC_ADMIN_URL').
243     ' '.__('See <a href="http://dotclear.org/documentation/2.0/admin/config">documentation</a> for more information.').
244     '</p>';
245}
246
247if (!defined('DC_ADMIN_MAILFROM') || !DC_ADMIN_MAILFROM) {
248     echo
249     '<p class="static-msg">'.
250     sprintf(__('%s is not defined, you should edit your configuration file.'),'DC_ADMIN_MAILFROM').
251     ' '.__('See <a href="http://dotclear.org/documentation/2.0/admin/config">documentation</a> for more information.').
252     '</p>';
253}
254
255$err = array();
256
257# Check cache directory
258if ( $core->auth->isSuperAdmin() ) {
259     if (!is_dir(DC_TPL_CACHE) || !is_writable(DC_TPL_CACHE)) {
260          $err[] = '<p>'.__("The cache directory does not exist or is not writable. You must create this directory with sufficient rights and affect this location to \"DC_TPL_CACHE\" in inc/config.php file.").'</p>';
261     }
262} else {
263     if (!is_dir(DC_TPL_CACHE) || !is_writable(DC_TPL_CACHE)) {
264          $err[] = '<p>'.__("The cache directory does not exist or is not writable. You should contact your administrator.").'</p>';
265     }
266}
267
268# Check public directory
269if ( $core->auth->isSuperAdmin() ) {
270     if (!is_dir($core->blog->public_path) || !is_writable($core->blog->public_path)) {
271          $err[] = '<p>'.__("There is no writable directory /public/ at the location set in about:config \"public_path\". You must create this directory with sufficient rights (or change this setting).").'</p>';
272     }
273} else {
274     if (!is_dir($core->blog->public_path) || !is_writable($core->blog->public_path)) {
275          $err[] = '<p>'.__("There is no writable root directory for the media manager. You should contact your administrator.").'</p>';
276     }
277}
278
279# Error list
280if (count($err) > 0) {
281     echo '<div class="error"><p><strong>'.__('Error:').'</strong></p>'.
282     '<ul><li>'.implode("</li><li>",$err).'</li></ul></div>';
283}
284
285# Plugins install messages
286if (!empty($plugins_install['success']))
287{
288     echo '<div class="success">'.__('Following plugins have been installed:').'<ul>';
289     foreach ($plugins_install['success'] as $k => $v) {
290          echo '<li>'.$k.'</li>';
291     }
292     echo '</ul></div>';
293}
294if (!empty($plugins_install['failure']))
295{
296     echo '<div class="error">'.__('Following plugins have not been installed:').'<ul>';
297     foreach ($plugins_install['failure'] as $k => $v) {
298          echo '<li>'.$k.' ('.$v.')</li>';
299     }
300     echo '</ul></div>';
301}
302# Errors modules notifications
303if ($core->auth->isSuperAdmin())
304{
305     $list = $core->plugins->getErrors();
306     if (!empty($list)) {
307          echo
308          '<div class="error" id="module-errors" class="error"><p>'.__('Errors have occured with following plugins:').'</p> '.
309          '<ul><li>'.implode("</li>\n<li>", $list).'</li></ul></div>';
310     }
311}
312
313# Dashboard items and contents (processed first, as we need to know the result before displaying the icons.)
314$dashboardItems = '';
315foreach ($__dashboard_items as $i)
316{
317     foreach ($i as $v) {
318          $dashboardItems .= $v;
319     }
320}
321$dashboardContents = '';
322foreach ($__dashboard_contents as $i)
323{
324     foreach ($i as $v) {
325          $dashboardContents .= $v;
326     }
327}
328
329# Dashboard elements: icons then boxes (items then contents)
330echo '<div id="dashboard-main">';
331
332if (!$core->auth->user_prefs->dashboard->nofavicons) {
333     # Dashboard icons
334     echo '<div id="icons">';
335     foreach ($__dashboard_icons as $i)
336     {
337          echo
338          '<p><a href="'.$i[1].'"><img src="'.dc_admin_icon_url($i[2]).'" alt="" />'.
339          '<br /><span>'.$i[0].'</span></a></p>';
340     }
341     echo '</div>';
342}
343
344if ($core->auth->user_prefs->dashboard->quickentry) {
345     if ($core->auth->check('usage,contentadmin',$core->blog->id))
346     {
347          # Getting categories
348          $categories_combo = dcAdminCombos::getCategoriesCombo(
349               $core->blog->getCategories(array())
350          );
351
352          echo
353          '<div id="quick">'.
354          '<h3>'.__('Quick entry').sprintf(' &rsaquo; %s',$core->auth->getOption('post_format')).'</h3>'.
355          '<form id="quick-entry" action="'.$core->adminurl->get('admin.post').'" method="post" class="fieldset">'.
356          '<h4>'.__('New entry').'</h4>'.
357          '<p class="col"><label for="post_title" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label>'.
358          form::field('post_title',20,255,'','maximal').
359          '</p>'.
360          '<p class="area"><label class="required" '.
361          'for="post_content"><abbr title="'.__('Required field').'">*</abbr> '.__('Content:').'</label> '.
362          form::textarea('post_content',50,10).
363          '</p>'.
364          '<p><label for="cat_id" class="classic">'.__('Category:').'</label> '.
365          form::combo('cat_id',$categories_combo).'</p>'.
366          ($core->auth->check('categories', $core->blog->id)
367               ? '<div>'.
368               '<p id="new_cat" class="q-cat">'.__('Add a new category').'</p>'.
369               '<p class="q-cat"><label for="new_cat_title">'.__('Title:').'</label> '.
370               form::field('new_cat_title',30,255,'','').'</p>'.
371               '<p class="q-cat"><label for="new_cat_parent">'.__('Parent:').'</label> '.
372               form::combo('new_cat_parent',$categories_combo,'','').
373               '</p>'.
374               '<p class="form-note info clear">'.__('This category will be created when you will save your post.').'</p>'.
375               '</div>'
376               : '').
377          '<p><input type="submit" value="'.__('Save').'" name="save" /> '.
378          ($core->auth->check('publish',$core->blog->id)
379               ? '<input type="hidden" value="'.__('Save and publish').'" name="save-publish" />'
380               : '').
381          $core->formNonce().
382          form::hidden('post_status',-2).
383          form::hidden('post_format',$core->auth->getOption('post_format')).
384          form::hidden('post_excerpt','').
385          form::hidden('post_lang',$core->auth->getInfo('user_lang')).
386          form::hidden('post_notes','').
387          '</p>'.
388          '</form>'.
389          '</div>';
390     }
391}
392
393if ($dashboardContents != '' || $dashboardItems != '') {
394     echo
395     '<div id="dashboard-boxes">'.
396     '<div class="db-items">'.$dashboardItems.'</div>'.
397     '<div class="db-contents">'.$dashboardContents.'</div>'.
398     '</div>';
399}
400
401echo '</div>'; #end dashboard-main
402dcPage::helpBlock('core_dashboard');
403dcPage::close();
Note: See TracBrowser for help on using the repository browser.

Sites map