Main public logs
Combined display of all available logs of Joomla! Documentation. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 12:48, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:47, 27 May 2023 Ing Pulizzi talk contribs created page Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/28/it (Created page with "$fieldset->addAttribute('addfieldprefix', 'Robbie\Component\Helloworld\Administrator\Field');")
- 12:47, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:46, 27 May 2023 Ing Pulizzi talk contribs created page 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"")
- 12:46, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:46, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:45, 27 May 2023 Ing Pulizzi talk contribs created page 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>.")
- 12:45, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:44, 27 May 2023 Ing Pulizzi talk contribs created page 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.")
- 12:44, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:44, 27 May 2023 Ing Pulizzi talk contribs created page 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!'''")
- 12:43, 27 May 2023 Ing Pulizzi talk contribs created page 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")
- 12:43, 27 May 2023 Ing Pulizzi talk contribs created page 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")
- 12:43, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:42, 27 May 2023 Ing Pulizzi talk contribs created page 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.")
- 12:42, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:42, 27 May 2023 Ing Pulizzi talk contribs created page 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:")
- 12:42, 27 May 2023 Ing Pulizzi talk contribs created page 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>.)")
- 12:42, 27 May 2023 Ing Pulizzi talk contribs created page Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/11/it (Created page with "<namespace path="src">Robbie\Component\Helloworld</namespace>")
- 12:42, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:40, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:39, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:39, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:38, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:38, 27 May 2023 Ing Pulizzi talk contribs created page 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...")
- 12:37, 27 May 2023 Ing Pulizzi talk contribs created page Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/4/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...")
- 12:37, 27 May 2023 Ing Pulizzi talk contribs created page Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/3/it (Created page with "== Introduzione == Questa pagina descrive i principali aspetti relativi allo sviluppo dei componenti che sono stati introdotti in Joomla 4 e descrive in dettaglio cosa è sta...")
- 12:36, 27 May 2023 Ing Pulizzi talk contribs created page Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/2/it (Created page with "Questo passaggio copre ciò che è coinvolto nell'aggiornamento del codice del tutorial per allinearlo con la versione 4 di Joomla.")
- 12:36, 27 May 2023 Ing Pulizzi talk contribs created page Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/1/it (Created page with "it")
- 12:36, 27 May 2023 Ing Pulizzi talk contribs created page J3.x:Developing an MVC Component/Upgrading to Joomla4/it (Created page with "Sviluppo di un Componente MVC / Aggiornamento a Joomla 4")
- 12:36, 27 May 2023 Ing Pulizzi talk contribs created page Translations:J3.x:Developing an MVC Component/Upgrading to Joomla4/Page display title/it (Created page with "Sviluppo di un Componente MVC / Aggiornamento a Joomla 4")
- 16:58, 6 March 2022 Ing Pulizzi talk contribs created page J4.x:Developing an MVC Component/Adding a Model to the Site Part/it (Created page with "it")
- 16:58, 6 March 2022 Ing Pulizzi talk contribs created page Translations:J4.x:Developing an MVC Component/Adding a Model to the Site Part/2/it (Created page with "it")
- 16:58, 6 March 2022 Ing Pulizzi talk contribs created page Translations:J4.x:Developing an MVC Component/Adding a Model to the Site Part/1/it (Created page with "it")
- 16:58, 6 March 2022 Ing Pulizzi talk contribs created page Translations:J4.x:Developing an MVC Component/Adding a Model to the Site Part/Page display title/it (Created page with "J4.x:Sviluppo di un Componente MVC/Aggiunta del Model lato Sito")
- 15:05, 12 September 2019 User account Ing Pulizzi talk contribs was created