本文整理汇总了PHP中DmQuery::get方法的典型用法代码示例。如果您正苦于以下问题:PHP DmQuery::get方法的具体用法?PHP DmQuery::get怎么用?PHP DmQuery::get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DmQuery
的用法示例。
在下文中一共展示了DmQuery::get方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: form_biblio_material_types
function form_biblio_material_types($loc)
{
$form = "";
// Played with printselect function
if (isset($postVars['materialCd'])) {
$materialCd = $postVars['materialCd'];
} else {
$materialCd = '';
}
$fieldname = "materialCd";
$domainTable = "material_type_dm";
$dmQ = new DmQuery();
$dmQ->connect();
$dms = $dmQ->get($domainTable);
$dmQ->close();
$form .= "<select id=\"materialCd\" name=\"materialCd\"";
// Needed OnChange event here.
$form .= " onChange=\"matCdReload()\">\n";
$form .= "<option value=\"\" selected>" . $loc->getText("any") . "</option>";
foreach ($dms as $dm) {
$form .= "<option value=\"" . H($dm->getCode()) . "\"";
$form .= ">" . H($dm->getDescription()) . "</option>";
}
$form .= "</select>";
return $form;
}
示例2: dmSelect
function dmSelect($table, $name, $value = "", $all = FALSE, $attrs = NULL)
{
$dmQ = new DmQuery();
$dmQ->connect();
# Don't use getAssoc() so that we can set the default below
$dms = $dmQ->get($table);
$dmQ->close();
$default = "";
$options = array();
if ($all) {
$options['all'] = 'All';
}
foreach ($dms as $dm) {
$options[$dm->getCode()] = $dm->getDescription();
if ($dm->getDefaultFlg() == 'Y') {
$default = $dm->getCode();
}
}
if ($value == "") {
$value = $default;
}
return inputField('select', $name, $value, $attrs, $options);
}
示例3: dmSelect
function dmSelect($table, $name, $value = "", $all = FALSE, $attrs = NULL, $required = TRUE)
{
$dmQ = new DmQuery();
$dmQ->connect();
# Don't use getAssoc() so that we can set the default below
$dms = $dmQ->get($table);
$dmQ->close();
$default = "";
$options = array();
if ($all) {
$options['all'] = 'All';
}
if (!$required) {
// Add "Any" for the first option.
$loc = new Localize(OBIB_LOCALE, "shared");
$options[''] = $loc->getText("any");
}
foreach ($dms as $dm) {
$options[$dm->getCode()] = $dm->getDescription();
if ($dm->getDefaultFlg() == 'Y') {
$default = $dm->getCode();
}
}
if ($value == "") {
$value = $default;
}
if (!$required) {
// Selected on "Any" option.
$value = "";
}
return inputField('select', $name, $value, $attrs, $options);
}
示例4: DmQuery
<tr>
<td nowrap="true" class="primary" valign="top">
<?php
echo $loc->getText("biblioCopyEditFormStatus");
?>
:
</td>
<td valign="top" class="primary">
<?php
#**************************************************************************
#* only show status codes for valid transitions
#**************************************************************************
$dmQ = new DmQuery();
$dmQ->connect();
$dms = $dmQ->get("biblio_status_dm");
$dmQ->close();
echo "<select name=\"statusCd\"";
if (in_array($postVars["statusCd"], $disallowed)) {
echo " disabled";
}
echo ">\n";
foreach ($dms as $dm) {
$cd = $dm->getCode();
# We don't normally show transitions to disallowed states, but
# we do want to show the correct status, if it's one of those.
if (in_array($cd, $disallowed) && $cd != $postVars["statusCd"]) {
continue;
}
echo "<option value=\"" . H($dm->getCode()) . "\"";
if ($postVars["statusCd"] == "" && $dm->getDefaultFlg() == 'Y') {
示例5: Localize
/* This file is part of a copyrighted work; it is distributed with NO WARRANTY.
* See the file COPYRIGHT.html for more details.
*/
require_once "../shared/common.php";
$tab = "admin";
$nav = "member_fields";
require_once "../classes/Dm.php";
require_once "../classes/DmQuery.php";
require_once "../functions/errorFuncs.php";
require_once "../shared/logincheck.php";
require_once "../classes/Localize.php";
$loc = new Localize(OBIB_LOCALE, $tab);
require_once "../shared/header.php";
$dmQ = new DmQuery();
$dmQ->connect();
$dms = $dmQ->get("member_fields_dm");
$dmQ->close();
?>
<a href="../admin/member_fields_new_form.php?reset=Y"><?php
echo $loc->getText("Add new custom field");
?>
</a><br>
<h1> <?php
echo $loc->getText("Custom Member FIelds");
?>
</h1>
<table class="primary">
<tr>
<th colspan="2" valign="top">
<font class="small">*</font><?php
echo $loc->getText("function");
示例6: DmQuery
?>
:
</td>
<td valign="top" class="primary">
<?php
// Played with printselect function
if (isset($postVars['materialCd'])) {
$materialCd = $postVars['materialCd'];
} else {
$materialCd = '';
}
$fieldname = "materialCd";
$domainTable = "material_type_dm";
$dmQ = new DmQuery();
$dmQ->connect();
$dms = $dmQ->get($domainTable);
$dmQ->close();
echo "<select id=\"materialCd\" name=\"materialCd\"";
// Needed OnChange event here.
echo " onChange=\"matCdReload()\">\n";
foreach ($dms as $dm) {
echo "<option value=\"" . H($dm->getCode()) . "\"";
if ($materialCd == "" && $dm->getDefaultFlg() == 'Y') {
$materialCd = $dm->getCode();
echo " selected";
} elseif ($materialCd == $dm->getCode()) {
echo " selected";
}
echo ">" . H($dm->getDescription()) . "</option>\n";
}
echo "</select>\n";
示例7: H
$dms = $dmQ->get("collection_dm");
$dmQ->close();
foreach ($dms as $dm) {
echo '<input type="checkbox" value="' . $dm->getCode() . '" name="collec[]"> ' . H($dm->getDescription()) . "<br>\n";
}
?>
</td>
<td nowrap="true" valign="top" class="primary">
<input type="checkbox" name="selectall" value="select_all"
onclick="selectAll('material[]');"><b><?php
echo $loc->getText("indexSearchInvert");
?>
</b><br>
<?php
$dmQ = new DmQuery();
$dmQ->connect();
$dms = $dmQ->get("material_type_dm");
$dmQ->close();
foreach ($dms as $dm) {
echo '<input type="checkbox" value="' . $dm->getCode() . '" name="material[]"> ' . H($dm->getDescription()) . "<br>\n";
}
?>
</td> </tr>
</font>
</table>
</form>
<?php
include "../shared/footer.php";