Merci !
Travail de ce soir
Utilisation des composants swing :
Travail de ce soir
Utilisation des composants swing :
Code PHP :
<?php
Util::import('swing');
Util::import('swing.jslider');
Util::import('swing.dialogbox');
/** L'objet JSlider comporte plusieurs constructeurs */
$jslider = new JSlider(new String(JSlider::HORIZONTAL), new Int(100), new Int(200), new Int(170));
$body .= $jslider->paint();
/** DialogBox de base */
$dialog = new Dialog(new String('Dialog testing'), new String('Ceci est un test blabla'));
$body .= $dialog->paint();
/** DialogBox spécialisée : animée (cette classe étend la classe précédente */
$animatedDialog = new AnimatedDialog(new String('Dialog testing'), new String('Ceci est un test blabla'), new String('Ouvrir'));
$body .= $animatedDialog->paint();
echo $body;
J'attends vos commentaires.