Oui, c'est cela, c'est géré comme un objet avec toute une série de méthodes dessus, plusieurs constructeurs, ...
Autres exemples :
Autres exemples :
Code PHP :
<?php
$modalDialog = new JModalDialog(new String('Dialog testing'), new String('Ceci est un test blabla'));
$body .= $modalDialog->paint();
$modalConfDialog = new JModalConfirmDialog(new String('Dialog testing'), new String('Ceci est un test blabla'),
new Int(200), new String('Accepter'), new String('Refuser'));
$body .= $modalConfDialog->paint();
$modalMsgDialog = new JModalMsgDialog(new String('Dialog testing'), new String('Ceci est un test blabla'), new String('Accepter'));
$body .= $modalMsgDialog->paint();
$jprogressbar = new JProgressbar(new Int(30));
$body .= $jprogressbar->paint();