当前位置: 首页>>代码示例>>PHP>>正文


PHP message::language_page_create方法代码示例

本文整理汇总了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();
开发者ID:bireme,项目名称:proethos,代码行数:31,代码来源:message_create.php

示例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.
开发者ID:bireme,项目名称:proethos,代码行数:31,代码来源:message_ed_pop.php


注:本文中的message::language_page_create方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。