Changeset 10099 for extensions/nbc_ThemeChanger
- Timestamp:
- Apr 6, 2011, 12:23:29 PM (14 years ago)
- Location:
- extensions/nbc_ThemeChanger
- Files:
-
- 1 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/nbc_ThemeChanger/Version.txt
r6642 r10099 1 Version 2.2.0.a 2 [lang=fr] 3 Mise en compatibilité avec piwigo 2.2 4 CSS combine ok 5 combine_script ok 6 remplacement du terme "catégorie" par "album" 7 8 fichier modifiés 9 admin/nbc_themeChanger_admin.tpl 10 language/*/plugin.lang.php 11 12 [/lang=fr] 13 [lang=en] 14 Piwigo 2.2 compatibility upgrade 15 [/lang=en] 16 17 [lang=it] 18 19 [/lang=it] 20 21 -------------------------------------------------- 1 22 Version 2.1.0.c 2 23 -
extensions/nbc_ThemeChanger/admin/nbc_ThemeChanger_admin.tpl
r6648 r10099 1 {combine_css path="plugins/nbc_ThemeChanger/theme/style.css"} 1 2 2 <link rel="stylesheet" href="plugins/nbc_ThemeChanger/theme/style.css" type="text/css" id="" /> 3 <script type="text/javascript" src="plugins/nbc_ThemeChanger/include/jquery.tablesorter.js"></script> 3 {combine_script id='jquery.tablesorter' load='async' require='jquery' path='plugins/nbc_ThemeChanger/include/jquery.tablesorter.js'} 4 4 5 6 {literal} 7 8 <script type="text/javascript" id="js"> 9 $(document).ready(function() { 10 // extend the default setting to always include the zebra widget. 11 $.tablesorter.defaults.widgets = ['zebra']; 12 // extend the default setting to always sort on the first column 13 $.tablesorter.defaults.sortList = [[0,0]]; 14 // On choisi ici la colonne 5 (l'index commence à 0) // On désactive le tri sur cette colonne 15 $.tablesorter.defaults.headers = { 16 2: { 5 {footer_script require='jquery.tablesorter'}{literal} 6 jQuery(document).ready(function() { 7 // call the tablesorter plugin 8 jQuery("#tablesorter").tablesorter({ 9 // extend the default setting to always sort on the first column 10 sortList : [[0,0]], 11 // extend the default setting to always include the zebra widget. 12 widgets : ['zebra'], 13 // On choisi ici les colonnes 2 et 3 (l'index commence à 0) // On désactive le tri sur cette colonne 14 headers : { 15 0 : { sorter:'text' }, 16 1 : { sorter:'text' }, 17 2: { 17 18 sorter: false 18 19 } , … … 20 21 sorter: false 21 22 } 22 }; 23 // call the tablesorter plugin 24 $("table").tablesorter(); 23 } 24 }); 25 25 }); 26 </script> 26 {/literal}{/footer_script} 27 27 28 <script type='text/javascript'> 29 $(function(){ 30 $(".assocLink").tipTip({ 28 29 {footer_script require='jquery.tablesorter'}{literal} 30 jQuery(document).ready(function() { 31 jQuery(".assocLink").tipTip({ 31 32 maxWidth: "auto", 32 33 activation: "hover", … … 34 35 defaultPosition: "top", 35 36 delay: 0 36 37 }); 37 38 }); 38 </script> 39 {/literal}{/footer_script} 39 40 40 {/literal} 41 41 42 42 43 <div class="titrePage"> … … 47 48 </ul> 48 49 49 < br>50 <!--br> 50 51 [ <a href="{$params.U_ADD_ASSOC}">{'add_assoc'|@translate}</a> ] 51 <br >52 <br--> 52 53 53 54 <table class="table2" id="tablesorter"> 54 55 <thead> 55 56 <tr class="throw"> 56 <th>{' categories'|@translate}</th>57 <th>{' theme'|@translate}</th>58 <th>{' action'|@translate}</th>57 <th>{'Albums'|@translate}</th> 58 <th>{'Themes'|@translate}</th> 59 <th>{'Action'|@translate}</th> 59 60 <th>{'Status'|@translate}</th> 60 61 </tr> … … 95 96 <table class="table2"> 96 97 <tr class="throw"> 97 <th>{' categories'|@translate}</th>98 <th>{' theme'|@translate}</th>99 <th>{'sub CategoriesApply'|@translate}</th>98 <th>{'Album'|@translate}</th> 99 <th>{'Theme'|@translate}</th> 100 <th>{'subAlbumsApply'|@translate}</th> 100 101 </tr> 101 102 <tr> -
extensions/nbc_ThemeChanger/language/en_UK/plugin.lang.php
r6648 r10099 1 1 <?php 2 3 /***************V2.2.0.a*****************/ 4 $lang['subAlbumsApply']='Apply into the Sub-Albums?'; 5 2 6 /***************V2.1.0.c*****************/ 3 7 $lang['Valide_assoc'] = 'Valide association '; -
extensions/nbc_ThemeChanger/language/es_ES/plugin.lang.php
r6648 r10099 1 1 <?php 2 3 /***************V2.2.0.a*****************/ 4 $lang['subAlbumsApply']='¿ Aplicar sobre las subalbums ?'; 5 2 6 /***************V2.1.0.c*****************/ 3 7 $lang['Valide_assoc'] = 'Valide association'; -
extensions/nbc_ThemeChanger/language/fr_FR/plugin.lang.php
r6648 r10099 1 1 <?php 2 3 /***************V2.2.0.a*****************/ 4 $lang['subAlbumsApply']='Appliquer aux sous-Albums?'; 5 2 6 /***************V2.1.0.c*****************/ 3 7 $lang['Valide_assoc'] = 'Association valide'; 4 $lang['ErrorDelete_assoc'] = 'Association invalide à cause d la supression du thème';8 $lang['ErrorDelete_assoc'] = 'Association invalide à cause de la supression du thème'; 5 9 $lang['ErrorUnactive_assoc'] = 'Association invalide à cause de la désactivation du thème'; 6 10 -
extensions/nbc_ThemeChanger/language/hu_HU/plugin.lang.php
r6686 r10099 1 1 <?php 2 3 /***************V2.2.0.a*****************/ 4 $lang['subAlbumsApply']='Apply into the Sub-Albums?'; 5 2 6 /***************V2.1.0.c*****************/ 3 7 $lang['Valide_assoc'] = 'Sikeres társítás '; -
extensions/nbc_ThemeChanger/language/it_IT/plugin.lang.php
r7435 r10099 1 1 <?php 2 3 /***************V2.2.0.a*****************/ 4 $lang['subAlbumsApply']='Applicare alle Sotto-Album?'; 5 2 6 /***************V2.1.0.c*****************/ 3 7 $lang['Valide_assoc'] = 'Associazione valida'; -
extensions/nbc_ThemeChanger/main.inc.php
r6648 r10099 2 2 /* 3 3 Plugin Name: NBC ThemeChanger 4 Version: 2. 1.0.B4 Version: 2.2.0.A 5 5 Description: Permet d'associer à chaque catégorie virtuel ou physique un thème spécifique. 6 6 ThemeChanger vous permet de spécifier pour chaque catérie un thème différent. … … 30 30 array( 31 31 'NAME' => 'ThemeChanger', 32 'URL' => get_admin_plugin_menu_link(NBC_ThemeChanger_PATH.'admin/nbc_ThemeChanger_admin.php') 32 // 'URL' => get_admin_plugin_menu_link(NBC_ThemeChanger_PATH.'admin/nbc_ThemeChanger_admin.php') 33 'URL' => get_root_url().'admin.php?page=plugin-'.basename(NBC_ThemeChanger_PATH) 34 // 'URL' => get_root_url().'admin.php?page=plugin-'.basename(dirname(__FILE__)) 33 35 ) 34 36 );
Note: See TracChangeset
for help on using the changeset viewer.