/** * @covers Xoops\Form\Element::getClass */ public function testGetClass() { $name = 'name'; $this->object->setClass($name); $value = $this->object->getClass(); $this->assertSame($name, $value); }
$formInscription->setAction("/Portail/Inscription"); $pseudo = new Element("pseudo", "Votre pseudo"); $pseudo->requireElement(true); $mail = new Element("mail", "Votre email"); $mail->setTypeElement("email"); $mail->requireElement(true); $password = new Element("password", "Mot de passe"); $password->setTypeElement("password"); $password->requireElement(true); $confirmPassword = new Element("confirmPassword", "Confirmez votre mot de passe"); $confirmPassword->setTypeElement("password"); $confirmPassword->requireElement(true); $birth = new Element("birth", "Votre date de naissances"); $birth->requireElement(true); $radioHomme = new Element("sexe", "Homme"); $radioHomme->setTypeElement("radio"); $radioHomme->setName("sexeHomme"); $radioHomme->setClass("sexeRadio"); $radioFemme = new Element("sexe", "Femme"); $radioFemme->setTypeElement("radio"); $radioFemme->setName("sexeFemme"); $radioFemme->setClass("sexeRadio"); $formInscription->addElement($pseudo); $formInscription->addElement($mail); $formInscription->addElement($password); $formInscription->addElement($confirmPassword); $formInscription->addElement($birth); $formInscription->addElement($radioFemme); $formInscription->addElement($radioHomme); $formInscription->submit("Inscription"); echo $formInscription->render();
public function submit($textSubmit) { $submit = new Element("send", "Envoyer"); $submit->setLabel(""); $submit->setValue($textSubmit); $submit->setTypeElement("submit"); $submit->setClass("btn btn-primary"); $this->addElement($submit); }
<?php /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ $formConnexion = new Form("Connexion"); $formConnexion->setMethod("POST"); $formConnexion->setAction("/controller/authentification/connexion.php"); $pseudo = new Element("login", "Votre pseudo"); $pseudo->setClass("form-control"); $password = new Element("password", "Mot de passe"); $password->setTypeElement("password"); $password->setClass("form-control"); $formConnexion->addElement($pseudo); $formConnexion->addElement($password); $formConnexion->submit("Entrez dans le Tchat"); echo $formConnexion->render();