User contributions
- 13:35, 27 May 2023 diff hist +5 Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/Page display title/it current
- 12:48, 27 May 2023 diff hist +62 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "===Caricamento automatico della classe=== Joomla utilizza il meccanismo PHP per [https://www.php.net/manual/en/language.oop5.autoload.php Classi di caricamento automatico] e..." current
- 12:48, 27 May 2023 diff hist +733 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/29/it Created page with "===Caricamento automatico della classe=== Joomla utilizza il meccanismo PHP per [https://www.php.net/manual/en/language.oop5.autoload.php Classi di caricamento automatico] e..." current
- 12:47, 27 May 2023 diff hist -96 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "e anche in <tt>admin/src/Model/HelloworldModel::preprocessForm</tt> dove le associazioni vengono aggiunte dinamicamente al modulo per formare il campo di tipo <tt>modal_hellow..."
- 12:47, 27 May 2023 diff hist +93 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/28/it Created page with "$fieldset->addAttribute('addfieldprefix', 'Robbie\Component\Helloworld\Administrator\Field');" current
- 12:47, 27 May 2023 diff hist +200 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/27/it Created page with "e anche in <tt>admin/src/Model/HelloworldModel::preprocessForm</tt> dove le associazioni vengono aggiunte dinamicamente al modulo per formare il campo di tipo <tt>modal_hellow..." current
- 12:47, 27 May 2023 diff hist -56 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "addruleprefix="Robbie\Component\Helloworld\Administrator\Rule" addfieldprefix="Robbie\Component\Helloworld\Administrator\Field""
- 12:46, 27 May 2023 diff hist +131 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/26/it Created page with "addruleprefix="Robbie\Component\Helloworld\Administrator\Rule" addfieldprefix="Robbie\Component\Helloworld\Administrator\Field"" current
- 12:46, 27 May 2023 diff hist -27 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "Se utilizzi definizioni di campi o regole personalizzate nei tuoi file xml del modulo, devi indicare a PHP quale prefisso dello spazio dei nomi utilizzare per cercarli, ad ese..."
- 12:46, 27 May 2023 diff hist +216 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/25/it Created page with "Se utilizzi definizioni di campi o regole personalizzate nei tuoi file xml del modulo, devi indicare a PHP quale prefisso dello spazio dei nomi utilizzare per cercarli, ad ese..." current
- 12:46, 27 May 2023 diff hist -24 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "Inoltre, se usi una delle classi predefinite di PHP (ad es. <tt>Exception</tt>) nel tuo codice, aggiungi una barra rovesciata prima di essa (ad es. <tt>\Exception</tt>), altri..."
- 12:46, 27 May 2023 diff hist +230 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/24/it Created page with "Inoltre, se usi una delle classi predefinite di PHP (ad es. <tt>Exception</tt>) nel tuo codice, aggiungi una barra rovesciata prima di essa (ad es. <tt>\Exception</tt>), altri..." current
- 12:45, 27 May 2023 diff hist -75 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "Quindi il namespace che specifichi nei tuoi file di classe deve essere allineato con il percorso del tuo file PHP, sotto la cartella di base <tt>src</tt> nel prefisso del tuo..."
- 12:45, 27 May 2023 diff hist +83 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/23/it Created page with "Si noti in particolare come sono ora organizzati i file della classe <tt>View</tt>." current
- 12:45, 27 May 2023 diff hist +185 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/22/it Created page with "Quindi il namespace che specifichi nei tuoi file di classe deve essere allineato con il percorso del tuo file PHP, sotto la cartella di base <tt>src</tt> nel prefisso del tuo..." current
- 12:44, 27 May 2023 diff hist -69 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "In Joomla 4 genera il nome completo della classe che vuole trovare, quindi cerca di trovarlo nella posizione in cui la raccomandazione PSR-4 lo aspetterebbe."
- 12:44, 27 May 2023 diff hist +157 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/21/it Created page with "In Joomla 4 genera il nome completo della classe che vuole trovare, quindi cerca di trovarlo nella posizione in cui la raccomandazione PSR-4 lo aspetterebbe." current
- 12:44, 27 May 2023 diff hist -32 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "Quando Joomla 3 ha voluto chiamare le funzioni nel tuo componente, ha cercato determinati nomi di file in cartelle particolari e ha verificato che il nome della classe in quel..."
- 12:44, 27 May 2023 diff hist +214 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/20/it Created page with "Quando Joomla 3 ha voluto chiamare le funzioni nel tuo componente, ha cercato determinati nomi di file in cartelle particolari e ha verificato che il nome della classe in quel..." current
- 12:44, 27 May 2023 diff hist -34 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "'''Nota che le lettere maiuscole sono importanti nei namespace, nei nomi delle classi e nei nomi dei percorsi!'''"
- 12:44, 27 May 2023 diff hist +113 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/19/it Created page with "'''Nota che le lettere maiuscole sono importanti nei namespace, nei nomi delle classi e nei nomi dei percorsi!'''" current
- 12:43, 27 May 2023 diff hist -57 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "<tt>Robbie\Component\Helloworld\Site\Model\CategoryModel</tt> si troverà in components/com_helloworld/src/Model/CategoryModel.php"
- 12:43, 27 May 2023 diff hist +131 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/18/it Created page with "<tt>Robbie\Component\Helloworld\Site\Model\CategoryModel</tt> si troverà in components/com_helloworld/src/Model/CategoryModel.php" current
- 12:43, 27 May 2023 diff hist -57 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "<tt>Robbie\Component\Helloworld\Administrator\Controller\DisplayController</tt> si troverà in administrator/components/com_helloworld/src/Controller/DisplayController.php"
- 12:43, 27 May 2023 diff hist +172 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/17/it Created page with "<tt>Robbie\Component\Helloworld\Administrator\Controller\DisplayController</tt> si troverà in administrator/components/com_helloworld/src/Controller/DisplayController.php" current
- 12:43, 27 May 2023 diff hist -1 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "Quindi Joomla ora si aspetta che tutti i nomi delle classi vengano trovati in quelle directory di base, con il nome del file che corrisponde al nome della classe e il nome del..."
- 12:43, 27 May 2023 diff hist +233 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/16/it Created page with "Quindi Joomla ora si aspetta che tutti i nomi delle classi vengano trovati in quelle directory di base, con il nome del file che corrisponde al nome della classe e il nome del..." current
- 12:43, 27 May 2023 diff hist -62 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "<tt>Robbie\Component\Helloworld\Site</tt> – punterà a components/com_helloworld/src sull'istanza live ed è associato a site/src nella nostra area di sviluppo."
- 12:42, 27 May 2023 diff hist +162 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/15/it Created page with "<tt>Robbie\Component\Helloworld\Site</tt> – punterà a components/com_helloworld/src sull'istanza live ed è associato a site/src nella nostra area di sviluppo." current
- 12:42, 27 May 2023 diff hist -59 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "<tt>Robbie\Component\Helloworld\Administrator</tt> – punterà ad administrator/components/com_helloworld/src sull'istanza live ed è associato ad admin/src nella nostra area..."
- 12:42, 27 May 2023 diff hist +188 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/14/it Created page with "<tt>Robbie\Component\Helloworld\Administrator</tt> – punterà ad administrator/components/com_helloworld/src sull'istanza live ed è associato ad admin/src nella nostra area..." current
- 12:42, 27 May 2023 diff hist -29 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "Questo in realtà crea 2 prefissi dello spazio dei nomi, che puntano a cartelle specifiche nella nostra struttura di sviluppo helloworld e nella nostra istanza joomla live:"
- 12:42, 27 May 2023 diff hist +172 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/13/it Created page with "Questo in realtà crea 2 prefissi dello spazio dei nomi, che puntano a cartelle specifiche nella nostra struttura di sviluppo helloworld e nella nostra istanza joomla live:" current
- 12:42, 27 May 2023 diff hist -52 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "(L'attributo <tt>path="src"</tt> indica che si aspetterà che le classi si trovino nella sottocartella <tt>src</tt>.)"
- 12:42, 27 May 2023 diff hist +117 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/12/it Created page with "(L'attributo <tt>path="src"</tt> indica che si aspetterà che le classi si trovino nella sottocartella <tt>src</tt>.)" current
- 12:42, 27 May 2023 diff hist -56 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "<namespace path="src">Robbie\Component\Helloworld</namespace>"
- 12:42, 27 May 2023 diff hist +61 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/11/it Created page with "<namespace path="src">Robbie\Component\Helloworld</namespace>" current
- 12:42, 27 May 2023 diff hist -40 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "Ora è previsto che anche le estensioni di Joomla utilizzino i NameSpace di base per l'estensione definito nel suo file XML manifest. I componenti di Joomla usano uno NameSpa..."
- 12:42, 27 May 2023 diff hist +447 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/10/it Created page with "Ora è previsto che anche le estensioni di Joomla utilizzino i NameSpace di base per l'estensione definito nel suo file XML manifest. I componenti di Joomla usano uno NameSpa..." current
- 12:40, 27 May 2023 diff hist -24 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "== NameSpace == ===NameSpace dei nomi dei componenti=== I NameSpace delle classi che utilizza la [https://www.php-fig.org/psr/psr-4/ PSR-4 recommendation] è stato gradualmen..."
- 12:40, 27 May 2023 diff hist +271 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/9/it Created page with "== NameSpace == ===NameSpace dei nomi dei componenti=== I NameSpace delle classi che utilizza la [https://www.php-fig.org/psr/psr-4/ PSR-4 recommendation] è stato gradualmen..." current
- 12:39, 27 May 2023 diff hist -18 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "Questo passaggio non copre tutto ciò che è necessario per aggiornare un componente da Joomla 3 a Joomla 4, solo gli aspetti coperti dal codice del tutorial. Se stai aggiorn..."
- 12:39, 27 May 2023 diff hist +322 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/8/it Created page with "Questo passaggio non copre tutto ciò che è necessario per aggiornare un componente da Joomla 3 a Joomla 4, solo gli aspetti coperti dal codice del tutorial. Se stai aggiorn..." current
- 12:39, 27 May 2023 diff hist -38 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "=== Ulteriori letture === Puoi trovare [https://blog.astrid-guenther.de/en/der-weg-zu-joomla4-erweiterungen/ qui] un tutorial per lo sviluppo dei componenti di Joomla 4, simi..."
- 12:39, 27 May 2023 diff hist +492 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/7/it Created page with "=== Ulteriori letture === Puoi trovare [https://blog.astrid-guenther.de/en/der-weg-zu-joomla4-erweiterungen/ qui] un tutorial per lo sviluppo dei componenti di Joomla 4, simi..." current
- 12:38, 27 May 2023 diff hist -30 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "Se stai installando il codice del tutorial di Joomla 4 su una nuova istanza di Joomla, dovrai configurare la tua istanza per renderla multilingue e aggiungere le voci di menu..."
- 12:38, 27 May 2023 diff hist +401 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/6/it Created page with "Se stai installando il codice del tutorial di Joomla 4 su una nuova istanza di Joomla, dovrai configurare la tua istanza per renderla multilingue e aggiungere le voci di menu..." current
- 12:38, 27 May 2023 diff hist -6 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "Il codice per questo passaggio è stato sviluppato seguendo ciascuno dei precedenti passaggi del tutorial e cercando di far funzionare ogni passaggio con Joomla 4.2.5. Poich..."
- 12:38, 27 May 2023 diff hist +495 N Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/5/it Created page with "Il codice per questo passaggio è stato sviluppato seguendo ciascuno dei precedenti passaggi del tutorial e cercando di far funzionare ogni passaggio con Joomla 4.2.5. Poich..." current
- 12:37, 27 May 2023 diff hist +34 J3.x:Developing an MVC Component/Upgrading to Joomla4/it Created page with "Non è pratico dettagliare tutte le modifiche al codice sulla pagina Web come è stato fatto per i passaggi precedenti dell'esercitazione. Invece puoi trovare il codice come..."