本文整理汇总了PHP中trad函数的典型用法代码示例。如果您正苦于以下问题:PHP trad函数的具体用法?PHP trad怎么用?PHP trad使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了trad函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: lister_caracteristiques
function lister_caracteristiques($critere, $order)
{
$caracteristique = new Caracteristique();
$query = "select id, classement from {$caracteristique->table} order by {$critere} {$order}";
$resul = $caracteristique->query($query);
while ($resul && ($row = $caracteristique->fetch_object($resul))) {
$caracteristiquedesc = new Caracteristiquedesc();
$caracteristiquedesc->charger($row->id);
$fond = "ligne_" . ($i++ % 2 ? "claire" : "fonce") . "_rub";
?>
<ul class="<?php
echo $fond;
?>
">
<li style="width:770px;"><span id="<?php
echo $row->id;
?>
" class="texte_edit"><?php
echo $caracteristiquedesc->titre;
?>
</span></li>
<li style="width:37px;"><a href="<?php
echo "caracteristique_modifier.php?id={$row->id}";
?>
"><?php
echo trad('editer', 'admin');
?>
</a></li>
<li style="width:71px;">
<div class="bloc_classement">
<div class="classement"><a href="caracteristique_modifier.php?id=<?php
echo $row->id;
?>
&action=modclassement&type=M"><img src="gfx/up.gif" border="0" /></a></div>
<div class="classement"><span id="classementcarac_<?php
echo $row->id;
?>
" class="classement_edit"><?php
echo $row->classement;
?>
</span></div>
<div class="classement"><a href="caracteristique_modifier.php?id=<?php
echo $row->id;
?>
&action=modclassement&type=D"><img src="gfx/dn.gif" border="0" /></a></div>
</div>
</li>
<li style="width:37px; text-align:center;"><a onclick="return suppr_carac(<?php
echo $row->id;
?>
);" href="<?php
echo "caracteristique_modifier.php?id={$row->id}&action=supprimer";
?>
" ><img src="gfx/supprimer.gif" width="9" height="9" border="0" /></a></li>
</ul>
<?php
}
}
示例2: ret_adrr
function ret_adrr($adr,$echImg=false,$lb_butt="BT_retour") {
global $def_adrr;
//print_r($_SESSION['ss_adrr']);
// l'adresse vient de $PHP_SELF qui peut contenir le chemin : on l'enl�e
if (strrchr($adr,"/")) $adr=substr(strrchr($adr,"/"),1);
if (strrchr($adr,"\\")) $adr=substr(strrchr($adr,"\\"),1);
if (!$echImg) { // 1=true ie si on ne doit pas renvoyer le lien mais seulement une URL
return (isset($_SESSION['ss_adrr'][$adr]) ? $_SESSION['ss_adrr'][$adr] : $def_adrr[$adr]);}
else {
if ($_SESSION['ss_adrr'][$adr]!="0") return ("<a class=\"fxbutton\" href=\"".(isset($_SESSION['ss_adrr'][$adr]) ? $_SESSION['ss_adrr'][$adr] : $def_adrr[$adr])."\">".trad($lb_butt)."</A>");
}
}
示例3: make_yes_no_radio
public function make_yes_no_radio($var_name)
{
$val = Variable::lire($var_name);
echo '<input type="radio" name="' . $var_name . '" value="1"' . ($val == 1 ? ' checked="checked"' : '') . '>' . trad('Oui', 'admin') . '
<input type="radio" name="' . $var_name . '" value="0"' . ($val == 0 ? ' checked="checked"' : '') . '>' . trad('Non', 'admin');
}
示例4: trad
echo $nbLimite;
?>
" style="width:30px" /><input name="limite" id="radio_limite_1" type="radio" class="form" value="1" <?php
echo $illimiten;
?>
/> <?php
echo trad('Illimite', 'admin');
?>
<input name="limite" type="radio" class="form" value="0" <?php
echo $illimiteo;
?>
/></li>
</ul>
<ul class="ligne_claire_BlocDescription">
<li class="designation" style="width:280px;"><?php
echo trad('Date_expi', 'admin');
?>
</li>
<li>Expire le <input name="jour" type="text" class="form" value="<?php
echo $jour;
?>
" style="width:15px" onclick="(document.getElementById('radio_expiration_1').checked='checked')" />
<input name="mois" type="text" class="form" value="<?php
echo $mois;
?>
" style="width:15px" onclick="(document.getElementById('radio_expiration_1').checked='checked')" />
<input name="annee" type="text" class="form" value="<?php
echo $annee;
?>
" style="width:30px" onclick="(document.getElementById('radio_expiration_1').checked='checked')" /><input type="radio" name="expiration" id="radio_expiration_1" value="1" <?php
echo $nillimdate;
示例5: checkTotal
$(this).parent().parent().unbind().remove();
checkTotal($('input[name="apply_client_discount"]').is(':checked') && $('#clientDiscountVal').html() > 0);
});
});
function displayChangeClientMessage()
{
$('input[name="client_selected"]').val(1);
$('#client_matched').unbind().empty().append(
$('<a />').attr('href', '#').html(
'<?php
echo htmlentities(trad('cancel_choice', 'admin'), ENT_QUOTES, 'UTF-8');
?>
'
).click(function(e)
{
changeClient(e)
})
);
}
function changeClient(e)
{
if(e !== null)
e.preventDefault();
$('.clientSearch').attr('readonly', false);
示例6: trad
echo 'checked="checked"';
}
?>
/> <?php
echo trad('Utiliser un domaine ou sous-domaine pour chaque langue', 'admin');
?>
</li>
</ul>
<ul class="ligne_fonce_BlocDescription">
<li style="width:151px;"><?php
echo trad('Langue', 'admin');
?>
</li>
<li style="width:406px;"><?php
echo trad('URL associée', 'admin');
?>
</li>
</ul>
<?php
$fond = 'claire';
foreach ($langues as $langue) {
?>
<ul class="ligne_<?php
echo $fond;
?>
_BlocDescription">
<li style="width:151px;"><?php
echo $langue->description;
?>
示例7: trad
echo $addError ? $description : '';
?>
" name="description" />
</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<a class="btn" data-dismiss="modal" aria-hidden="true"><?php
echo trad('Cancel', 'admin');
?>
</a>
<button type="submit" class="btn btn-primary"><?php
echo trad('Ajouter', 'admin');
?>
</button>
</div>
</form>
</div>
<?php
ActionsAdminModules::instance()->inclure_module_admin("droits_bottom");
?>
<?php
require_once "pied.php";
?>
示例8: chemin
function chemin($arbre_id = 0, $langue_id = 0)
{
$langue_id = $langue_id == 0 && $_GET["la_langue"] == "" ? __defaultlangueid__ : ($langue_id != "" ? $langue_id : $_GET["la_langue"]);
//print $arbre_id."/".$langue_id."<br>";
//print "ici";
$arbre_id = $arbre_id === 0 ? $_GET["arbre"] : $arbre_id;
if ($arbre_id != "" && $arbre_id != "0") {
$sql = "select pere,nom,contenu_id,a.arbre_id,etat_id,translate,arbre_id_alias,root,nom_fichier \r\n from " . __racinebd__ . "arbre a inner join " . __racinebd__ . "gabarit g on a.gabarit_id=g.gabarit_id \r\n inner join " . __racinebd__ . "contenu c on (a.arbre_id=c.arbre_id or a.arbre_id_alias=c.arbre_id) and langue_id=" . $langue_id . " where c.arbre_id=" . $arbre_id;
$link = query($sql);
$tbl_result = fetch($link);
if ($tbl_result["translate"] == "1") {
$sql = "select * from " . __racinebd__ . "content where contenu_id=" . $tbl_result["contenu_id"] . " and version_id=1";
} else {
$sql = "select * from " . __racinebd__ . "contenu c1 inner join " . __racinebd__ . "content c2 on c1.contenu_id=c2.contenu_id where c1.langue_id=" . __defaultlangueid__ . " and arbre_id=" . ($tbl_result["arbre_id_alias"] != "" ? $tbl_result["arbre_id_alias"] : $tbl_result["arbre_id"]) . " and version_id=1";
}
$link_txt = query($sql);
$tbl_result_txt = fetch($link_txt);
if ($tbl_result["pere"] == $tbl_result["root"]) {
$sql = "select shortlib from " . __racinebd__ . "langue where langue_id=" . $langue_id;
$link_langue = query($sql);
$tbl_result_langue = fetch($link_langue);
//if($langue_id==1)
if (__showlang__) {
if ($tbl_result["nom_fichier"] == "" || $tbl_result["etat_id"] != 1) {
//return "<a href=\"".urlp($tbl_result["root"]).$tbl_result_langue["shortlib"]."\">".trad("Accueil",$langue_id)."</a>";
//return "<a href=\"".urlp($tbl_result["root"])."\">".trad("Accueil",$langue_id)."</a>";
} else {
//return "<a href=\"".urlp($tbl_result["root"]).$tbl_result_langue["shortlib"]."\">".trad("Accueil",$langue_id)."</a> > <a href=\"".(($tbl_result["nom_fichier"]=="")?"#":(($tbl_result["etat_id"]==1)?urlp($arbre_id,$langue_id):"#"))."\">".strip_tags($tbl_result_txt["titre1"])."</a>";
return "<a href=\"" . urlp($tbl_result["root"]) . "\">" . trad("Accueil", $langue_id) . "</a> > <a href=\"" . ($tbl_result["nom_fichier"] == "" ? "#" : ($tbl_result["etat_id"] == 1 ? urlp($arbre_id, $langue_id) : "#")) . "\">" . strip_tags($tbl_result_txt["titre1"]) . "</a>";
}
} else {
if ($tbl_result["nom_fichier"] == "" || $tbl_result["etat_id"] != 1) {
return "<a href=\"" . urlp($tbl_result["root"]) . "\">" . trad("Accueil", $langue_id) . "</a>";
} else {
return "<a href=\"" . urlp($tbl_result["root"]) . "\">" . trad("Accueil", $langue_id) . "</a> > <a href=\"" . ($tbl_result["nom_fichier"] == "" ? "#" : ($tbl_result["etat_id"] == 1 ? urlp($arbre_id, $langue_id) : "#")) . "\">" . strip_tags($tbl_result_txt["titre1"]) . "</a>";
}
}
} else {
if ($tbl_result["nom_fichier"] == "" || $tbl_result["etat_id"] != 1) {
return chemin($tbl_result["pere"], $langue_id) . " > ";
} else {
return chemin($tbl_result["pere"], $langue_id) . " > <a href=\"" . ($tbl_result["nom_fichier"] == "" ? "#" : ($tbl_result["etat_id"] == 1 ? urlp($arbre_id, $langue_id) : "#")) . "\">" . strip_tags($tbl_result_txt["titre1"]) . "</a>";
}
//return chemin($tbl_result["pere"],$langue_id)." > <a href=\"#\">".strip_tags($tbl_result_txt["titre1"])."</a>";
}
}
}
示例9: trad
<!-- début du bloc de gestion des photos du contenu -->
<div class="bloc_fleche" style="cursor:pointer" onclick="$('#pliantsphotos').show('slow');"><img src="gfx/fleche_accordeon_img_dn.gif" /></div>
<div class="blocs_pliants_photo" id="pliantsphotos">
<?php
$images_adm->bloc_gestion();
?>
<div class="bloc_fleche" style="cursor:pointer" onclick="$('#pliantsphotos').hide();"><img src="gfx/fleche_accordeon_img_up.gif" /></div>
</div>
<!-- fin du bloc de gestion des photos du contenu -->
<!-- début du bloc de transfert des documents du contenu -->
<div class="entete" style="margin-top:10px;">
<div class="titre"><?php
echo trad('GESTION_DOCUMENTS', 'admin');
?>
</div>
</div>
<?php
$documents_adm->bloc_transfert();
?>
<!-- fin du bloc transfert des documents du contenu -->
<!-- début du bloc de gestion des documents du contenu -->
<div class="bloc_fleche" style="cursor:pointer" onclick="$('#pliantsfichier').show('slow');"><img src="gfx/fleche_accordeon_img_dn.gif" /></div>
<div class="blocs_pliants_fichier" id="pliantsfichier">
<?php
$documents_adm->bloc_gestion();
示例10: trad
?>
</span>
|
<?php
}
?>
<?php
}
?>
<a href="<?php
echo $_SERVER['PHP_SELF'];
?>
?page=<?php
echo $pagesuiv;
?>
"><?php
echo trad('Page_suivante', 'admin');
?>
</a>
</p>
</div>
<?php
require_once "pied.php";
?>
</div>
</div>
</body>
</html>
示例11: trad
?>
"><?php
echo trad('editer', 'admin');
?>
</a>)
<?php
}
?>
<?php
if ($breadcrumb["browse"] != "") {
?>
(<a href="<?php
echo $breadcrumb["browse"];
?>
"><?php
echo trad('parcourir', 'admin');
?>
</a>)
<?php
}
?>
</li>
<?php
} else {
?>
<li><a href="<?php
echo $breadcrumb["url"];
?>
"><?php
echo $breadcrumb["display"];
?>
示例12: if
<? if (!$ss_parenv[noinfos]) { ?>
<hr size="1" width="50%">
<? //JSpopup(); ?>
<div align="center">
<small> <?php
echo trad(foo_user_connected) . " " . ${$VarNomUserMAJ};
?>
- version <a href="#" onclick="popup('aide.php#clog')"><?php
echo $VerNum;
?>
</a>
<BR><a href="#" onclick="popup('aide.php');"><img src="help.gif" width="17" height="17" border="0" alt="Afficher l'aide"></A>
<a href="#" onclick="popup('aide.php');">Aide</A>
</small></div>
<? } ?>
</DIV> <!-- fin <DIV class="PYA"> -->
</BODY>
</HTML>
示例13: modifier_pays_zone
function modifier_pays_zone($idzone)
{
$zone = new Zone();
$zone->charger($idzone);
$pays = new Pays();
$query = "select * from {$pays->table} where zone=\"-1\"";
$resul = $pays->query($query);
?>
<div class="entete_liste_config" style="margin-top:15px;">
<div class="titre"><?php
echo trad('MODIFICATION_ZONE', 'admin');
?>
</div>
</div>
<ul class="ligne1">
<li style="width:250px;">
<select class="form_select" id="pays">
<?php
while ($resul && ($row = $pays->fetch_object($resul))) {
$paysdesc = new Paysdesc();
if ($paysdesc->charger($row->id)) {
?>
<option value="<?php
echo $paysdesc->pays;
?>
"><?php
echo $paysdesc->titre;
?>
</option>
<?php
}
}
?>
</select>
</li>
<li><a href="javascript:ajouter($('#pays').val())"><?php
echo trad('AJOUTER_PAYS', 'admin');
?>
</a></li>
</ul>
<?php
$pays = new Pays();
$query = "select * from {$pays->table} where zone=\"" . $idzone . "\"";
$resul = $pays->query($query);
while ($resul && ($row = $pays->fetch_object($resul))) {
$paysdesc = new Paysdesc();
$paysdesc->charger($row->id);
$fond = "ligne_" . ($i++ % 2 ? "fonce" : "claire") . "_BlocDescription";
?>
<ul class="<?php
echo $fond;
?>
">
<li style="width:492px;"><?php
echo $paysdesc->titre;
?>
</li>
<li style="width:32px;"><a href="javascript:supprimer(<?php
echo $row->id;
?>
)"><?php
echo trad('Supprimer', 'admin');
?>
</a></li>
</ul>
<?php
}
?>
<ul class="ligne1">
<li><?php
echo trad('Forfait transport: ', 'admin');
?>
<input type="text" class="form_inputtext" id="forfait" onclick="this.value=''" value="<?php
echo htmlspecialchars($zone->unite);
?>
" /></li>
<li><a href="javascript:forfait($('#forfait').val())"><?php
echo trad('VALIDER', 'admin');
?>
</a></li>
</ul>
<?php
}
示例14: bloc_gestion
public function bloc_gestion()
{
$image = new Image();
$query = "select * from {$image->table} where {$this->typeobjet}='{$this->idobjet}' order by classement";
$resul = $image->query($query);
while ($resul && ($row = $image->fetch_object($resul))) {
$imagedesc = new Imagedesc();
$imagedesc->charger($row->id, $this->lang);
?>
<form action="<?php
echo $this->nompageadmin;
?>
" method="post">
<input type="hidden" name="action" value="modifierphoto" />
<input type="hidden" name="id_photo" value="<?php
echo $row->id;
?>
" />
<input type="hidden" name="id" value="<?php
echo $this->idobjet;
?>
" />
<input type="hidden" name="lang" value="<?php
echo $this->lang;
?>
" />
<?php
$this->form_hidden_fieds();
?>
<ul>
<li class="lignesimple">
<div class="cellule_designation" style="height:208px;"> </div>
<div class="cellule_photos" style="height:200px; overflow:hidden;"><a href="<?php
echo $this->chemin_objet($row->fichier);
?>
" target="_blank"><img src="../fonctions/redimlive.php?type=<?php
echo $this->typeobjet;
?>
&nomorig=<?php
echo $row->fichier;
?>
&width=&height=200&opacite=&nb=" border="0" /></a></div>
<div class="cellule_supp"><a onclick="return confirm('<?php
echo trad('Supprimer définitivement cette image ?', 'admin');
?>
');" href="<?php
echo $this->url_page_admin();
?>
&id_photo=<?php
echo $row->id;
?>
&action=supprimerphoto"><img src="gfx/supprimer.gif" width="9" height="9" border="0" /></a></div>
</li>
<li class="lignesimple">
<div class="cellule_designation" style="height:30px;"><?php
echo trad('Titre', 'admin');
?>
</div>
<div class="cellule">
<input type="text" name="titre_photo" style="width:219px;" class="form" value="<?php
echo htmlspecialchars($imagedesc->titre);
?>
" />
</div>
</li>
<li class="lignesimple">
<div class="cellule_designation" style="height:50px;"><?php
echo trad('Chapo', 'admin');
?>
</div>
<div class="cellule"><textarea name="chapo_photo" rows="2"class="form" style="width:219px;"><?php
echo $imagedesc->chapo;
?>
</textarea></div>
</li>
<li class="lignesimple">
<div class="cellule_designation" style="height:65px;"><?php
echo trad('Description', 'admin');
?>
</div>
<div class="cellule"><textarea name="description_photo" class="form" rows="3"><?php
echo $imagedesc->description;
?>
</textarea></div>
</li>
<li class="lignesimple">
<div class="cellule_designation" style="height:30px;"><?php
echo trad('Classement', 'admin');
?>
</div>
<div class="cellule">
<div class="classement">
<a href="<?php
echo $this->url_page_admin() . "&id_photo=" . $row->id . "&action=modclassementphoto&type=M";
?>
"><img src="gfx/up.gif" border="0" /></a></div>
<div class="classement">
//.........这里部分代码省略.........
示例15: if
<br><br>
<?php
echo $theecho;
?>
<br><br>
<? if ($ss_parenv[blair]!="1" && $ss_parenv[ro]!=true) {
JSprotectlnk();?>
<small><?php
echo trad("BT_click");
?>
<a class="fxbutton" href="#" onclick="protectlnk('CREATE_DESC_TABLES.php','<?php
echo $jsppwd;
?>
','<?php
echo trad(com_enter_password);
?>
');"><?php
echo trad("BT_here");
?>
</a> <?php
echo trad("LB_createDT");
?>
</small>
<? }
include ("footer.php");
} else {
// si 1 seule base va directement à la la liste des tables de cette base
header ("location:LIST_TABLES.php?lc_DBName=$dbok&cfLB=vrai");
}
?>