• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP get_Conference_Settings函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中get_Conference_Settings函数的典型用法代码示例。如果您正苦于以下问题:PHP get_Conference_Settings函数的具体用法?PHP get_Conference_Settings怎么用?PHP get_Conference_Settings使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了get_Conference_Settings函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: negative

		of the decimal point. The price can be negative (to give a discount)
		by inserting a dash/hyphen/minus sign between the pipe characters and
		the first digit.</p>
	<p>If you want a particular option to have no price attached to it (only some
		options cost more), you can either set the price to 0.00 (a price of
		0.00 will be displayed) or follow the pipe characters with a dash/hyphen
		(no price will be displayed). If any option in the field has a price, <em>all</em> lines
		must have the pipe characters at the end (whether there is a price attatched
		or not). If any value has omitted the pipe characters, all subsequent
		prices will be shifted up one value.</p>
	<p>Do not include a currency symbol &#150; it will be added automatically based
		on settings on the <em>General Settings</em> page.</p>
<?php 
} else {
    // retrieve conference settings
    $settings = get_Conference_Settings();
    // define types of edits
    $levelType = array(0 => "none", 1 => "group", 2 => "field");
    // define types of fields
    $fieldType = array(1 => "plain text", 2 => "text field (single line)", 3 => "text field (multiple lines)", 4 => "checkbox", 5 => "checkbox group", 6 => "radio button", 7 => "radio button group", 8 => "drop-down menu", 9 => "selectable list");
    // define types of validation functions
    $valFunctions = array(11 => "numeric only", 12 => "numeric only (including spaces and dashes)", 13 => "phone number (characters and basic syntax)", 14 => "email address (syntax only)", 15 => "web site/page (syntax only)", 21 => "registered username", 22 => "registered author", 23 => "registered paper name", 31 => "credit card number", 32 => "credit card expiry date");
    // check $_POST to see if form has been submitted (for edits)
    if (count($_POST) > 0) {
        // get action
        $pos = strpos($_POST['action'], " ");
        if ($pos === false) {
            $action = strtolower($_POST['action']);
        } else {
            $action = substr(strtolower($_POST['action']), 0, $pos);
        }
开发者ID:alexzita,项目名称:alex_blog,代码行数:31,代码来源:create_attendee_rego_form.php


示例2: foreach

    //		echo $_SERVER["HTTP_REFERER"] ;
    $_POST["referer"] = $_SERVER["HTTP_REFERER"];
}
$papers_str = "";
if ($_POST["papers"]) {
    foreach ($_POST["papers"] as $some => $postpaperid) {
        $papers_str .= "<input type=\"hidden\" value=\"" . $postpaperid . "\" name=\"papers[]\">\n";
    }
}
$storepapers_str = "";
if ($_POST["storepapers"]) {
    foreach ($_POST["storepapers"] as $some => $id) {
        $storepapers_str .= "<input type=\"hidden\" value=\"" . $id . "\" name=\"storepapers[]\">\n";
    }
}
$settingInfo = get_Conference_Settings();
do_html_header("View Abstract", &$err_message);
?>
<br>
<form name="frmPaper" method="post" action="<?php 
echo $_POST["referer"];
?>
">
<table width="100%" border="0" cellspacing="0" cellpadding="1">
  <tr>
    <td align="center"><h3>#<?php 
echo $paperInfo->PaperID;
?>
&nbsp;&nbsp;<?php 
echo stripslashes($paperInfo->Title);
?>
开发者ID:alexzita,项目名称:alex_blog,代码行数:31,代码来源:view_abstract.php


示例3: isValidLogoFile

function isValidLogoFile(&$file, $error_array = array(), $index = 0, $array_key = NULL)
{
    static $hasvalue = "false";
    switch ($array_key) {
        case "name":
            $hasvalue = "true";
            break;
        case "type":
            if ($file == "image/jpeg" || $file == "image/pjpeg" || $file == "image/x-png" || $file == "image/png") {
            } else {
                $error_array[$index] = " This \"{$file}\" file type is not supported.<br>\n";
                return false;
            }
            break;
        case "tmp_name":
            break;
        case "size":
            if ($file == 0 && $hasvalue == "true") {
                //		echo "Failed \$string: " . $string . " <br>\n" ;
                $error_array[$index] = " Please upload a valid file.<br>\n";
                return false;
            } else {
                $err_message =& $GLOBALS["err_message"];
                if (($setobj = get_Conference_Settings(&$err_message)) === NULL) {
                    // global $_SERVER ;
                    do_html_header("Data Validation Failed", &$err_message);
                    $err_message .= " Could not execute \"get_Conference_Settings\" in \"data_validation_fns.php\". <br>\n";
                    $err_message .= "<br><br> Try <a href='" . $_SERVER["PHP_SELF"] . "?" . $_SERVER["QUERY_STRING"] . "'>again</a>?";
                    do_html_footer(&$err_message);
                    exit;
                }
                $maxfilesize = intval(ini_get("upload_max_filesize")) * 1000000;
                if ($setobj) {
                    $maxfilesize = $setobj->MaxLogoSize;
                }
                if ($file > $maxfilesize) {
                    $error_array[$index] = " Please keep file size to the limit of {$maxfilesize} bytes.<br>\n";
                    return false;
                    break;
                }
                return true;
            }
            break;
        case "error":
            if ($file == 2) {
                $error_array[$index] = " Please keep file size under the limit.<br>\n";
                return false;
            } else {
                return true;
            }
            break;
        default:
            break;
    }
}
开发者ID:alexzita,项目名称:alex_blog,代码行数:55,代码来源:data_validation_fns.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP get_CountryCache函数代码示例发布时间:2022-05-15
下一篇:
PHP get_CommentCache函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap