本文整理汇总了PHP中message::language_page_create方法的典型用法代码示例。如果您正苦于以下问题:PHP message::language_page_create方法的具体用法?PHP message::language_page_create怎么用?PHP message::language_page_create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类message
的用法示例。
在下文中一共展示了message::language_page_create方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: msg
// restricts commercial use of the Software.
//
// ProEthos is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
// PARTICULAR PURPOSE. See the ProEthos License for more details.
//
// You should have received a copy of the ProEthos License along with the ProEthos
// Software. If not, see
// https://raw.githubusercontent.com/bireme/proethos/master/LICENSE.txt
/**
* Menssages
* @author Rene Faustino Gabriel Junior (Analista-Desenvolvedor)
* @copyright © Pan American Health Organization, 2013. All rights reserved.
* @access public
* @version v.0.13.46
* @package Proethos
* @subpackage Menssages
*/
require 'cab.php';
$ln = new message();
if (is_dir('messages')) {
} else {
mkdir('messages');
}
echo $ln->language_page_create();
echo '<h2>';
echo msg('message_create_with_success');
echo '</h2>';
echo $ln->mensagem_email();
echo '</DIV>';
echo $hd->foot();
示例2:
$tabela = '';
///********************** SALVAR **/
if (strlen($acao) > 0) {
for ($r = 0; $r < count($cps); $r++) {
if (round($cps[$r][0]) > 0) {
$sql = "update " . $cl->tabela . " set msg_content='" . $dd[$r + 10] . "' ";
$sql .= " where id_msg = " . $cps[$r][0];
$rlt = db_query($sql);
}
if (round($cpi[$r][0]) > 0) {
$sql = "update " . $cl->tabela . " set msg_content='" . $dd[$r + 40] . "' ";
$sql .= " where id_msg = " . $cpi[$r][0];
$rlt = db_query($sql);
}
}
echo $cl->language_page_create();
echo '
<script>
close();
</script>
';
exit;
}
$idm = $cl->idioma();
?>
<form method="post" action="<?php
// This file is part of the ProEthos Software.
//
// Copyright 2013, PAHO. All rights reserved. You can redistribute it and/or modify
// ProEthos under the terms of the ProEthos License as published by PAHO, which
// restricts commercial use of the Software.