Changeset 1954118
- Timestamp:
- 10/09/2018 05:15:01 PM (7 years ago)
- Location:
- gestiolex/trunk
- Files:
-
- 6 edited
-
gestiolex.php (modified) (2 diffs)
-
pages/cerca_pratiche.php (modified) (1 diff)
-
pages/info_sistema.php (modified) (2 diffs)
-
pages/sidebar_sx_home.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
test/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gestiolex/trunk/gestiolex.php
r1952599 r1954118 3 3 Plugin Name: Gestiolex 4 4 Plugin URI: http://www.gestiolex.it 5 Version: 1.4. 65 Version: 1.4.7 6 6 Description: Gestionale per l'avvocato. 7 7 Author: Juri Rudi … … 20 20 21 21 // salva o aggiorna la versione del plugin e pulisce la cache, se necessario 22 $gestiolex_version = '1.4. 6';22 $gestiolex_version = '1.4.7'; 23 23 $gestiolex_installed_ver = get_site_option('gestiolex_version'); 24 24 -
gestiolex/trunk/pages/cerca_pratiche.php
r1951342 r1954118 297 297 echo '<fieldset>'; 298 298 echo "<b>Filtri della ricerca: </b>"; 299 echo ($pratica_numero != '0') ? "<br>Pratica numero: " . esc_html(wp_unsla h($pratica_numero)) : '';299 echo ($pratica_numero != '0') ? "<br>Pratica numero: " . esc_html(wp_unslash($pratica_numero)) : ''; 300 300 echo ($pratica_status != '') ? "<br>Status pratica: " . esc_html($pratica_status) : ''; 301 echo ($pratica_cliente != '') ? "<br>Cliente: " . esc_html(wp_unsla h($pratica_cliente)) : '';302 echo ($pratica_controparte != '') ? "<br>Controparte: " . esc_html(wp_unsla h($pratica_controparte)) : '';303 echo ($pratica_avvocato != '') ? "<br>Avvocato: " . esc_html(wp_unsla h($pratica_avvocato)) : '';304 echo ($pratica_consulente != '') ? "<br>Consulente: " . esc_html(wp_unsla h($pratica_consulente)) : '';301 echo ($pratica_cliente != '') ? "<br>Cliente: " . esc_html(wp_unslash($pratica_cliente)) : ''; 302 echo ($pratica_controparte != '') ? "<br>Controparte: " . esc_html(wp_unslash($pratica_controparte)) : ''; 303 echo ($pratica_avvocato != '') ? "<br>Avvocato: " . esc_html(wp_unslash($pratica_avvocato)) : ''; 304 echo ($pratica_consulente != '') ? "<br>Consulente: " . esc_html(wp_unslash($pratica_consulente)) : ''; 305 305 echo ($pratica_numero == '0' and $pratica_status == '' and $pratica_cliente == '' and $pratica_controparte == '' and $pratica_avvocato == '' and $pratica_consulente == '') ? "<i>nessuno</i>" : ''; 306 306 echo "<br><b>Risultati della ricerca: </b>" . esc_html($total); -
gestiolex/trunk/pages/info_sistema.php
r1952599 r1954118 10 10 // file di sistema WP per l'accesso ai plugin lato front-end 11 11 include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); 12 // versione WP 13 global $wp_version; 12 14 ?> 13 15 … … 42 44 <table class="table table-striped table-hover"> 43 45 <tbody> 46 <tr> 47 <td><b>Versione PHP del server:</b></td> 48 <td><?php echo phpversion() . $wp_version;?></td> 49 </tr> 50 <tr> 51 <td><b>Versione WordPress:</b></td> 52 <td><?php echo $wp_version;?></td> 53 </tr> 44 54 <?php if($browser_utente): ?> 45 55 <tr> 46 <td>< h4>Web Browser in uso:</h4></td>56 <td><b>Web Browser in uso:</b></td> 47 57 <td><?php echo $browser_utente . " (IP: ". $_SERVER['REMOTE_ADDR'] . ")";?></td> 48 58 </tr> 49 59 <?php endif; ?> 50 60 <tr> 51 <td>< h4>Tipo di connessione:</h4></td>61 <td><b>Tipo di connessione:</b></td> 52 62 <td><?php echo is_ssl() ? "https (sicura)" : "http (non sicura)";?></td> 53 63 </tr> 54 64 <tr> 55 <td>< h4>Descrizione del sito:</h4></td>65 <td><b>Descrizione del sito:</b></td> 56 66 <td><?php bloginfo();?></td> 57 67 </tr> 58 68 <tr> 59 <td>< h4>Utenti del sito (numero):</h4></td>69 <td><b>Utenti del sito (numero):</b></td> 60 70 <td><?php echo esc_html($utenti_numero);?></td> 61 71 </tr> 62 72 <tr> 63 <td>< h4>Utenti del sito (nomi):</h4></td>73 <td><b>Utenti del sito (nomi):</b></td> 64 74 <td class="dropdown"><?php wp_dropdown_users();?></td> 65 75 </tr> 66 76 <tr> 67 <td>< h4>Limite file in upload:</h4></td>77 <td><b>Limite file in upload:</b></td> 68 78 <td><?php echo number_format_i18n(wp_max_upload_size());?> bytes</td> 69 79 </tr> -
gestiolex/trunk/pages/sidebar_sx_home.php
r1952599 r1954118 24 24 <p class="label label-info center-block">Gestiolex© (vers. <?php echo esc_html($gestiolex_version); ?>)</p> 25 25 26 <center> 27 <?php echo get_avatar(get_current_user_id(), "", 'blank', "", array('class'=>"img-circle")); ?> 28 </center> 29 26 30 </div> 27 31 -
gestiolex/trunk/readme.txt
r1952599 r1954118 5 5 Requires at least: 4.0 6 6 Tested up to: 4.9.8 7 Stable tag: 1.4. 67 Stable tag: 1.4.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 59 59 60 60 == Changelog == 61 = 1.4. 6=61 = 1.4.7 = 62 62 * Anche le piccole cose possono contribuire a rendere il mondo un posto migliore. 63 63 -
gestiolex/trunk/test/index.php
r1952599 r1954118 12 12 require_once(ABSPATH . 'wp-includes/load.php'); 13 13 14 print_r(list_files()); 14 // echo get_avatar(get_current_user_id()); 15 echo get_avatar("rudijuri@gmail.com", "", "", "", array('class'=>"img-circle")); 15 16 16 17
Note: See TracChangeset
for help on using the changeset viewer.