本文整理汇总了PHP中btn_ok函数的典型用法代码示例。如果您正苦于以下问题:PHP btn_ok函数的具体用法?PHP btn_ok怎么用?PHP btn_ok使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了btn_ok函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: btn_ok
<?php
echo $comboProfiles;
?>
</span>
<span class="select" style="width: 253px"><label>Personnel</label>
<?php
echo $comboPersonnels;
?>
</span>
</fieldset>
</div>
<div class="recapitulatif">
<div class="errors">
<?php
if ($errors) {
echo "L'utilisateur " . $user . " existe déjà dans le systéme";
}
?>
</div>
</div>
<div class="navigation">
<?php
if (isAuth(607)) {
echo btn_ok("ajouterUser()");
}
?>
</div>
</form>
<div class="status">
</div>
示例2: foreach
<datalist id="listDestinataire">
<?php
foreach ($destinataires as $d) {
echo "<option value='" . $d['PORTABLE'] . "'>" . $d['NOM'] . "</option>";
}
?>
</datalist>
</span>
<span class="text" style="width: 79%; clear: both; height: 90%"><label>Message : </label>
<textarea name="message" rows="10" cols="3" ></textarea></span>
</fieldset>
</div>
<div class="recapitulatif"></div>
<div class="navigation">
<?php
echo btn_ok("envoyerSMS();");
?>
</div>
</form>
<div class="status">
<?php
if (isset($errors)) {
?>
<script>
$(document).ready(function () {
<?php
if ($errors) {
echo "alertWebix('Message non envoyé <br/>Une erreur s\\'est prouite');";
} else {
echo "alertWebix('Message envoyé avec succès');";
}
示例3: btn_ok
<span class="text" style="width: 200px">
<label>BP</label><input type="text" name="bp" />
</span>
<span class="text" style="width: 200px">
<label>Portable</label><input type="text" name="portable" />
</span>
<span class="text" style="width: 200px">
<label>Téléphone</label><input type="text" name="telephone" />
</span>
<span class="text" style="width: 200px">
<label>E-mail</label><input type="text" name="email" />
</span>
<span class="text" style="width: 200px">
<label>Profession</label><input type="text" name="profession" />
</span>
<span class="text" style="width: 200px">
<label>Accepte les SMS</label><input type="checkbox" name="acceptesms" />
</span>
<span class="text" style="width: 200px">
<label>N° envoi de SMS</label><input type="text" name="numsms" />
</span>
</fieldset>
</div>
<div class="recapitulatif"></div>
<div class="navigation">
<?php
echo btn_ok("document.forms[0].submit()");
?>
</div>
</form>
<div class="status"></div>
示例4: btn_ok
</form>
</div>
<div id="onglet3" class="onglet" style="display: none;height: 90%">
<p style="color: #ff9999; margin: 0; padding: 0; text-align: center">Fonctionnalité non implémentée</p>
<div id="justification-par-classe-content">
<fieldset id='checbox-eleves' style="float: none; margin: auto; width: 80%">
<legend>Choix des élèves</legend>
</fieldset>
<fieldset id="justifier-par-classe" style="float: none; margin: auto;height: 200px; width: 80%">
<legend>Justification des élèves</legend>
<span class="text" style="width: 95%"><label>Motif</label><input type="text" name="motifclasse" /></span>
<span class="text" style="width: 95%"><label>Description:</label>
<textarea rows="3" cols="12"></textarea></span>
</fieldset>
</div>
<p style="text-align: right;margin-right: 100px;">
<?php
echo btn_ok("") . " " . btn_cancel("");
?>
</p>
</div>
<p style="margin:5px 10px 0 10px; padding: 0">
<?php
echo $legendes;
?>
</p>
</div>
<div class="navigation" >
</div>
<div class="status"></div>
示例5: btn_ok
?>
" maxlength="15"/>
</span>
<span class="text" style="width: 150px">
<label>Email</label>
<input type="text" name="email" value="<?php
echo $personnel['EMAIL'];
?>
" maxlength="15"/>
</span>
</fieldset>
</div>
<div class="recapitulatif">
</div>
<div class="navigation">
<?php
if (isAuth(502)) {
echo btn_ok("submitForm();");
}
if (isAuth(203)) {
echo btn_cancel("document.location=\"" . Router::url("personnel") . "\"");
} else {
echo btn_cancel_disabled();
}
?>
</div>
</form>
<div class="status"></div>
示例6: btn_ok
<?php
echo $comboClasses;
?>
</span>
<span class="select" style="width: 250px"><label>Enseignements : </label>
<select name="comboEnseignements">
<option></option>
</select></span>
</div>
</div>
<form name="frmProgrammation" action="<?php
echo Router::url("pedagogie", "programmation");
?>
" method="post">
<div class="page">
</div>
<div class="navigation">
<?php
if (isAuth(526)) {
echo btn_ok("validerProgrammation()");
}
?>
</div>
<input type="hidden" name="idenseignement" value="" />
</form>
<div class="status">
</div>
示例7: url
</div>
<form action ="<?php
echo url('matiere', 'saisie');
?>
" method="post" name="saisiematiere">
<div class="page">
<fieldset style="margin: auto; width: 450px; float: none;"><legend>Saisie de matières</legend>
<span class="text" style="width: 200px"><label>Nom abrégé</label><input type ="text" name ="code" /></span>
<span class="text" style="width: 200px"><label>Libellé</label><input type="text" name="libelle" /></span>
</fieldset>
</div>
<div class="recapitulatif"><div class="errors">
<?php
if ($errors) {
echo $message;
}
?>
</div>
</div>
<div class="navigation">
<?php
echo btn_ok("soumettreMatiere();");
?>
<?php
echo btn_cancel("document.location=\"" . Router::url('matiere') . "\"");
?>
</div>
</form>
<div class="status">
</div>
示例8: foreach
</table>
</div>
<div id="listedroits" style="width: 550px; float: right; ">
<table id="tabledroits" class="dataTable">
<thead>
<tr><th>Code</th><th>Description du droits</th><th></th></tr>
</thead>
<tbody>
<?php
foreach ($droits as $d) {
echo "<tr><td style='border-left:1px solid #000'>" . $d['CODEDROIT'] . "</td><td>" . $d['LIBELLE'] . "</td>" . "<td><input type='checkbox' /></td></tr>";
}
?>
</tbody>
</table>
</div>
<p style="clear:both ; text-align: center; color: red">
Cocher les utilisateurs ainsi que les droits à appliquer à ces derniers
</p>
</div>
<div class="navigation">
<?php
echo btn_ok("validerDroit();");
?>
</div>
<input type="hidden" name="profile" value="" />
</form>
<div class="status">
</div>
示例9: btn_ok
<?php
echo $comboClasses;
?>
</span>
<span class="select" style="width: 250px; margin-top: 0"><label>Frais à payés</label>
<select name="comboFrais" id="comboFrais">
<option></option>
</select>
</span>
<br/><br/><br/>
<span>Montant du frais : </span>
<span id="montantFrais" style="width: 165px; display: inline-block;">
________________________</span>
<span>Echéance : </span><span id="echeanceFrais">
_______________________</span>
</div>
</div>
<div class="page">
<div id="scolarite-content">
</div>
</div>
<div class="navigation">
<?php
//autorisation pour consulter les infos de la classe
if (isAuth(202)) {
echo btn_ok("document.location='" . Router::url("classe") . "'");
}
?>
</div>
<div class="status"></div>
示例10: btn_ok
<fieldset style="float: none !important; width: 65%; margin: auto; height: 60%">
<legend>Zone de saisie de message</legend>
<span class="text" style="width: 80%"><label>Destinataire : </label>
<select name="collectif">
<option value=""></option>
<option value="1">Parents d'élèves</option>
<option value="2">Enseignants de l'Institut</option>
<option value="3">Staff permanent de l'Institut</option>
</select>
</span>
<span class="text" style="width: 79%; clear: both; height: 90%"><label>Message : </label>
<textarea name="messagecollectif" rows="10" cols="3" ></textarea></span>
</fieldset>
<p style="text-align: right; margin-right: 150px">
<?php
echo btn_ok("envoyerCollectif();");
?>
</p>
</div>
</div>
<div class="recapitulatif"></div>
<div class="navigation">
<?php
//echo btn_ok("envoyerSMS();");
?>
</div>
</form>
<div class="status">
<?php
if (isset($errors)) {
?>
示例11: btn_ok
<label>Nouveau mot de passe</label><input type="password" name="newpwd" />
</span>
<span class="text" style="width: 200px;">
<label>Confirmation du mot de passe</label><input type="password" name="confpwd" />
</span>
</fieldset>
<div class="errors">
En cas de succès, Vous serez redigiré sur la page d'authentification <br/>....<br/>
Utilisez votre nouveau mot de passe pour vous ré-authentifier
</div>
</div>
<div class="recapitulatif"><div class="errors"><blink>
<?php
if ($errors) {
echo $message;
}
?>
</blink>
</div>
</div>
<div class="navigation">
<?php
echo btn_ok("document.forms['frmcontent'].submit();");
?>
<?php
echo btn_cancel("document.location='" . Router::url() . "'");
?>
</div>
</form>
<div class="status"></div>
示例12: img_imprimer
<table class="dataTable" id="tablePeriodique">
<thead><tr><th>N°</th><th>Noms & Prénoms</th><th>T.Abs</th><th>Abs.J</th><th>Cons</th><th>Décis°</th></tr></thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class="navigation">
<div class="editions" style="float: left">
<img src="<?php
echo img_imprimer();
?>
" /> Editions:
<select onchange="imprimer();" name = "code_impression">
<option></option>
<option value="0006">Fiche de suivi périodique des élèves pré-rempli Ou Non</option>
</select>
</div>
<?php
if (isAuth(330)) {
echo btn_ok("validerSuivi()");
} else {
echo btn_ok_disabled();
}
?>
</div>
</form>
<div class="status">
</div>
示例13: btn_ok
<tr><td style="font-weight: bold">Portable : </td><td><?php
//echo $portable;
?>
</td></tr>
<tr><td style="font-weight: bold">Téléphone : </td><td><?php
//echo $telephone;
?>
</td></tr>
<tr><td style="font-weight: bold">Email : </td><td><?php
//echo $email;
?>
</td></tr>
</table>
</fieldset>
</div>
<div id="onglet2" class="onglet" style="display: none; height: 95%"><?php
echo $droits;
?>
</div>
<div id="onglet3" class="onglet" style="display: none; height: 95%"><?php
echo $connexions;
?>
</div>
</div>
<div class="navigation">
<?php
echo btn_ok("validerFormDroit();");
?>
</div>
</form>
<div class="status"></div>
示例14: img_imprimer
</div>
<div class="page">
<div id="eleve-content">
<table class="dataTable" id="eleveTable">
<thead><th>Matricule</th><th>Noms & Prénoms</th><th>Note</th>
<!-- th>Absent</th --><th>Non noté</th><th>Observations</th></thead>
<tbody>
</tbody></table>
</div>
</div>
<div class="navigation">
<div class="editions" style="float: left">
<img src="<?php
echo img_imprimer();
?>
" /> Editions:
<select onchange="imprimer();" name = "code_impression">
<option></option>
<option value="0001">Imprimer une fiche de report de note vierge</option>
<option value="0005">Imprimer une fiche de report de note sequentielle</option>
</select>
</div>
<?php
//Droit recapitulatif des notes
if (isAuth(401)) {
echo btn_ok("soumettreNotes();");
}
?>
</div>
</form>
<div class="status"></div>
示例15: btn_ok
?>
</div>
</div>
</fieldset>
<div id="photoeleve" style="border: 1px solid #000; float: left; position: relative;width: 200px; height: 200px;margin: 8px 20px;">
<?php
if (isset($eleve['PHOTO']) && !empty($eleve['PHOTO'])) {
echo "<img style = 'width:200px;height:200px;' src = '" . SITE_ROOT . "public/photos/eleves/" . $eleve['PHOTO'] . "' />";
}
?>
</div>
</form>
</div>
</div>
<div class="recapitulatif">
<div class="errors">
<?php
//if ($errors)
// echo $message;
?>
</div>
</div>
<div class="navigation">
<?php
echo btn_ok("soumettreFormEleve();");
?>
</div>
<div class="status"></div>