source: trunk/spip/esqueleto-redcta/themes/alternatives/plugins/sktheme/1_9_2/exec/sktheme_private_choice.php @ 30

Last change on this file since 30 was 30, checked in by sebas, 17 years ago

nueva importacion del codigo del esqueleto de redcta con los plugins

File size: 1.7 KB
Line 
1<?php
2  // ---------------------------------------------------------------------
3  //
4  // Sktheme : manage themes under SPIP (squelettes + habillages)
5  //
6  // Copyright (c) 2006 - Skedus
7  //
8  // This program is free software; you can redistribute it and/or modify
9  // it under the terms of the GNU General Public License as published by
10  // the Free Software Foundation; either version 2 of the License, or
11  // (at your option) any later version.
12  //
13  // You should have received a copy of the GNU General Public License
14  // along with this program;
15  //
16  // ---------------------------------------------------------------------
17
18if (!defined("_ECRIRE_INC_VERSION")) return;
19
20include_spip('inc/presentation');
21include_spip('inc/sktheme_util');
22
23//
24// Private Area Page definition
25//
26function exec_sktheme_private_choice() {
27
28  debut_page(_T('sktheme:private_theme_choice'),'configuration','sktheme_public_choice');
29
30  echo "<br />";
31  gros_titre(_T('sktheme:private_theme_choice'));
32 
33  // Include 'onglets'
34  sktheme_private_choice_onglets();
35 
36  debut_gauche();
37  // Include 'raccourcis'
38  sktheme_raccourcis();
39
40 
41  debut_droite();
42  echo "<br />";
43  // debut_cadre_trait_couleur($icone='', $return = false, $fonction='', $titre=''){
44  debut_cadre_trait_couleur('', false, "sktheme_private_squelette_list", _T('sktheme:available_squelette_list'));
45 
46  echo '<br />';
47  echo _T('sktheme:to_be_done');
48  echo '<br />';
49   
50  fin_cadre_trait_couleur();
51 
52  debut_cadre_trait_couleur('', false, "sktheme_squelette_list", _T('sktheme:available_habillage_list'));
53
54  echo '<br />';
55  echo _T('sktheme:to_be_done');
56  echo '<br />';   
57 
58  fin_cadre_trait_couleur();
59 
60 
61 
62  fin_page();
63
64}
65
66
67?>
Note: See TracBrowser for help on using the repository browser.