Changeset 1905095
- Timestamp:
- 07/06/2018 09:24:51 AM (8 years ago)
- Location:
- gestiolex/trunk
- Files:
-
- 2 added
- 4 edited
-
classi (added)
-
classi/gx_persona.php (added)
-
gestiolex.php (modified) (1 diff)
-
pages/grafici_fatture_fatturatomedio.php (modified) (1 diff)
-
pages/persona_scheda.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gestiolex/trunk/gestiolex.php
r1822245 r1905095 3 3 Plugin Name: Gestiolex 4 4 Plugin URI: http://www.gestiolex.it 5 Version: 1.3. 75 Version: 1.3.8 6 6 Description: Gestionale per l'avvocato. 7 7 Author: Juri Rudi -
gestiolex/trunk/pages/grafici_fatture_fatturatomedio.php
r1801342 r1905095 59 59 // echo 'probe1_array:<pre>', print_r($probe1_array, true), "</pre>"; # visualizza l'indicizzazione dell'array 60 60 61 $importo_fatture = array_sum($probe1_array); 62 // echo "importo fatturato: ". $importo_fatture . "<br><br>"; 61 $importo_fatture = ""; 62 if ($probe1_array) { 63 $importo_fatture = array_sum($probe1_array); 64 // echo "importo fatturato: ". $importo_fatture . "<br><br>"; 65 } 63 66 64 67 ?> -
gestiolex/trunk/pages/persona_scheda.php
r1787756 r1905095 23 23 include(GESTIOLEX_PATH . 'variabili_comuni.php'); 24 24 25 // include la classe gx_Persona 26 // include(GESTIOLEX_PATH . 'classi/gx_persona.php'); 27 28 // crea l'oggetto dalla classe 29 // $gx_persona = new gx_Persona(); 30 25 31 global $elenco_coa; 26 32 global $province_italiane; … … 29 35 if (isset($_REQUEST['persona_id']) and $_REQUEST['persona_id'] > 0) { 30 36 $persona_id = (int)$_REQUEST['persona_id']; 37 31 38 global $wpdb; 32 39 $tabella_persone = $wpdb->prefix . 'gx_persone'; -
gestiolex/trunk/readme.txt
r1822245 r1905095 4 4 Donate link: https://www.paypal.me/gestiolex 5 5 Requires at least: 4.0 6 Tested up to: 4.9. 47 Stable tag: 1.3. 76 Tested up to: 4.9.8 7 Stable tag: 1.3.8 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.