本文整理汇总了PHP中GetDef函数的典型用法代码示例。如果您正苦于以下问题:PHP GetDef函数的具体用法?PHP GetDef怎么用?PHP GetDef使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了GetDef函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: defined
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="ru-RU">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<?php
$idmass = explode(",", GetDef('mass'));
echo '<table border="1" width="1380px" cellpadding="8" cellspacing="0">';
$rw = 0;
for ($i = 0; $i < count($idmass); $i++) {
$idm = $idmass[$i];
$sql = "SELECT * FROM users_profile WHERE usersid = '{$idm}'";
$result = $sqlcn->ExecuteSQL($sql) or die('Не могу выбрать!' . mysqli_error($sqlcn->idsqlconnection));
if ($rw == 0) {
echo '<tr style="vertical-align: top;">';
}
echo '<td width="460px">';
while ($row = mysqli_fetch_array($result)) {
$fio = $row['fio'];
$code = $row['code'];
$post = $row['post'];
echo "<h1>{$fio}</h1>";
示例2: defined
<?php
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$num = GetDef('num', '0');
$sql = "SELECT * FROM news ORDER BY dt DESC limit {$num}, 4";
$result = $sqlcn->ExecuteSQL($sql) or die('Не могу выбрать список новостей! ' . mysqli_error($sqlcn->idsqlconnection));
$cnt = 0;
$rz = 0;
while ($row = mysqli_fetch_array($result)) {
$dt = MySQLDateTimeToDateTimeNoTime($row['dt']);
$title = $row['title'];
echo '<span class="label label-info">' . $dt . '</span><h5>' . $title . '</h5>';
$pieces = explode('<!-- pagebreak -->', $row['body']);
echo "<p>{$pieces['0']}</p>";
if (isset($pieces[1])) {
echo '<div align="right"><a class="btn btn-primary btn-small" href="?content_page=news_read&id=' . $row[id] . '">Читать дальше</a></div>';
}
$rz++;
}
if ($rz == 0) {
echo 'error';
}
示例3: defined
<?php
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
// Проверяем может ли пользователь редактировать?
$user->TestRoles('1,5') or die('Для редактирования не хватает прав!');
$nodekey = GetDef('nodekey');
$srnodekey = GetDef('srnodekey');
$sql = "UPDATE cloud_dirs SET parent = '{$nodekey}' WHERE id = '{$srnodekey}'";
$sqlcn->ExecuteSQL($sql) or die('Не могу обновить дерево папок! ' . mysqli_error($sqlcn->idsqlconnection));
示例4: defined
<?php
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$kntid = GetDef('kntid');
$sql = "SELECT * FROM knt WHERE id = '{$kntid}' AND active = 1";
$result = $sqlcn->ExecuteSQL($sql) or die('Не могу выбрать список контрагентов!' . mysql_error());
$dogcount = 0;
while ($row = mysqli_fetch_array($result)) {
if ($row['dog'] == '1') {
echo '<div class="alert alert-success">Контрагент:';
$nm = $row['name'];
echo "{$nm}<br>";
$sql = "SELECT * FROM contract WHERE kntid = '{$kntid}' AND work = 1 AND datestart <= CURDATE() AND dateend >= CURDATE() AND active = 1";
$result2 = $sqlcn->ExecuteSQL($sql) or die('Не могу выбрать список договоров! ' . mysqli_error($sqlcn->idsqlconnection));
while ($row2 = mysqli_fetch_array($result2)) {
$dogcount++;
echo '<div class="well"><span class="label label-info">Активный договор:</span><br>';
$dt1 = MySQLDateToDate($row2['datestart']);
$dt2 = MySQLDateToDate($row2['dateend']);
$num = $row2['num'];
$nm = $row2['name'];
echo "Номер: {$num}, {$nm}</br>";
示例5: defined
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$page = GetDef('page', '1');
$limit = GetDef('rows');
$sidx = GetDef('sidx', '1');
$sord = GetDef('sord');
$oper = PostDef('oper');
$id = PostDef('id');
$title = PostDef('title');
$cloud_dirs_id = GetDef('cloud_dirs_id');
if ($oper == '') {
// Проверяем может ли пользователь просматривать?
$user->TestRoles('1,3,4,5,6') or die('Недостаточно прав');
$sql = "SELECT COUNT(*) AS cnt FROM cloud_files WHERE cloud_dirs_id = '{$cloud_dirs_id}'";
$result = $sqlcn->ExecuteSQL($sql) or die('Не могу выбрать количество записей! ' . mysqli_error($lb->idsqlconnection));
$row = mysqli_fetch_array($result);
$count = $row['cnt'];
$total_pages = $count > 0 ? ceil($count / $limit) : 0;
if ($page > $total_pages) {
$page = $total_pages;
}
$start = $limit * $page - $limit;
$sql = <<<TXT
SELECT *
FROM cloud_files
示例6: defined
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$page = GetDef('page', '1');
$limit = GetDef('rows');
$sidx = GetDef('sidx', '1');
$sord = GetDef('sord');
$orgid = GetDef('orgid');
$placesid = GetDef('placesid');
$oper = PostDef('oper');
$id = PostDef('id');
$name = PostDef('name');
$comment = PostDef('comment');
if ($oper == '') {
// Проверяем может ли пользователь просматривать?
$user->TestRoles('1,3,4,5,6') or die('Недостаточно прав');
$result = $sqlcn->ExecuteSQL("SELECT COUNT(*) AS cnt FROM places_users WHERE placesid = '{$placesid}'");
$row = mysqli_fetch_array($result);
$count = $row['cnt'];
$total_pages = $count > 0 ? ceil($count / $limit) : 0;
if ($page > $total_pages) {
$page = $total_pages;
}
$start = $limit * $page - $limit;
示例7: defined
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$page = GetDef('page', '1');
$limit = GetDef('rows');
$sidx = GetDef('sidx', '1');
$sord = GetDef('sord');
$oper = PostDef('oper');
$id = PostDef('id');
$idcontract = GetDef('idcontract');
$where = "WHERE idcontract = '{$idcontract}'";
if ($oper == '') {
// Проверяем может ли пользователь просматривать?
$user->TestRoles('1,3,4,5,6') or die('Недостаточно прав');
$result = $sqlcn->ExecuteSQL("SELECT COUNT(*) AS cnt FROM files_contract {$where}");
$row = mysqli_fetch_array($result);
$count = $row['cnt'];
$total_pages = $count > 0 ? ceil($count / $limit) : 0;
if ($page > $total_pages) {
$page = $total_pages;
}
$start = $limit * $page - $limit;
$sql = "SELECT * FROM files_contract {$where} ORDER BY {$sidx} {$sord} LIMIT {$start}, {$limit}";
$result = $sqlcn->ExecuteSQL($sql) or die('Не могу выбрать список договоров! ' . mysqli_error($sqlcn->idsqlconnection));
$responce = new stdClass();
示例8: defined
<?php
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$id = GetDef('eqid');
$oper = PostDef('oper');
$param = PostDef('param');
$paramidid = PostDef('id');
if ($id == '') {
$id = PostDef('eqid');
}
if ($oper == '') {
$responce = new stdClass();
// получаем группу номенклатуры
$sql = <<<TXT
SELECT equipment.id,nome.id AS nomeid,nome.groupid AS groupid
FROM equipment
INNER JOIN nome
ON nome.id = equipment.nomeid
WHERE ( equipment.id = '{$id}' )
AND ( nome.active = 1 )
TXT;
$result = $sqlcn->ExecuteSQL($sql) or die('Не получилось найти группу! ' . mysqli_error($sqlcn->idsqlconnection));
示例9: defined
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$page = GetDef('page', '1');
$limit = GetDef('rows');
$sidx = GetDef('sidx', '1');
$sord = GetDef('sord');
$filters = GetDef('filters');
$orgid = PostDef('orgid');
$oper = PostDef('oper');
$id = PostDef('id');
$login = PostDef('login');
$pass = PostDef('pass');
$email = PostDef('email');
$mode = PostDef('mode');
if ($oper == '') {
// Разрешаем при наличии ролей "Полный доступ" и "Просмотр"
$user->TestRoles('1,3') or die('Недостаточно прав');
$flt = json_decode($filters, true);
$cnt = count($flt['rules']);
$where = '';
for ($i = 0; $i < $cnt; $i++) {
$field = $flt['rules'][$i]['field'];
示例10: defined
<?php
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$eqid = GetDef('eqid');
$coor = GetDef('coor');
$x = $coor[0][1];
$y = $coor[0][0];
$sql = "UPDATE equipment SET mapx = '{$x}', mapy = '{$y}', mapmoved = 0 WHERE id = '{$eqid}'";
$result = $sqlcn->ExecuteSQL($sql) or die('Не могу обновить координаты ТМЦ! ' . mysqli_error($sqlcn->idsqlconnection));
示例11: defined
<?php
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
// Выполняем только при наличии у пользователя соответствующей роли
// http://грибовы.рф/wiki/doku.php/основы:доступ:роли
$user->TestRoles('1,3,4,5,6') or die('Недостаточно прав');
$foldername = GetDef('foldername');
function GetTree($key)
{
global $sqlcn;
$sql = "SELECT * FROM cloud_dirs WHERE parent = {$key}";
$result = $sqlcn->ExecuteSQL($sql) or die('Не могу прочитать папку! ' . mysqli_error($sqlcn->idsqlconnection));
$cnt = mysqli_num_rows($result);
if ($cnt != 0) {
$pz = 0;
while ($row = mysqli_fetch_array($result)) {
$name = $row['name'];
$key = $row['id'];
echo '{"title":"' . $name . '","isFolder":true,"key":"' . $key . '","children":[';
GetTree($key);
echo ']}';
$pz++;
示例12: defined
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$page = GetDef('page', '1');
$limit = GetDef('rows');
$sidx = GetDef('sidx', '1');
$sord = GetDef('sord');
$oper = PostDef('oper');
$curuserid = GetDef('curuserid');
$id = PostDef('id');
if ($oper == '') {
$sql = <<<TXT
SELECT COUNT(*) AS cnt,name AS grname,res2.*
FROM group_nome
INNER JOIN (SELECT places.name AS plname,res.*
FROM places
INNER JOIN (SELECT name AS namenome,nome.groupid AS grpid,eq.*
FROM nome
INNER JOIN (SELECT equipment.id AS eqid,equipment.placesid AS plid,
equipment.nomeid AS nid,
equipment.buhname AS bn,
equipment.cost AS cs,
equipment.currentcost AS curc,
equipment.invnum,
示例13: defined
<?php
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$id = GetDef('groupid', '1');
$vid = GetDef('vendorid', '1');
$nomeid = GetDef('nomeid');
$sql = "SELECT id, name FROM nome WHERE groupid = '{$id}' AND vendorid = '{$vid}'";
$result = $sqlcn->ExecuteSQL($sql) or die('Не могу выбрать список номенклатуры! ' . mysqli_error($sqlcn->idsqlconnection));
echo '<select class="chosen-select" name="snomeid" id="snomeid">';
while ($row = mysqli_fetch_array($result)) {
$sl = $row['id'] == $nomeid ? 'selected' : '';
echo "<option value=\"{$row['id']}\" {$sl}>{$row['name']}</option>";
}
echo '</select>';
示例14: defined
<?php
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$page = GetDef('page', '1');
$limit = GetDef('rows');
$sidx = GetDef('sidx', '1');
$sord = GetDef('sord');
$oper = PostDef('oper');
$id = PostDef('id');
$name = PostDef('name');
$comment = PostDef('comment');
if ($oper == '') {
// Проверяем может ли пользователь просматривать?
$user->TestRoles('1,3,4,5,6') or die('Недостаточно прав');
$result = $sqlcn->ExecuteSQL("SELECT COUNT(*) AS cnt FROM vendor");
$row = mysqli_fetch_array($result);
$count = $row['cnt'];
$total_pages = $count > 0 ? ceil($count / $limit) : 0;
if ($page > $total_pages) {
$page = $total_pages;
}
$start = $limit * $page - $limit;
示例15: defined
/*
* Данный код создан и распространяется по лицензии GPL v3
* Разработчики:
* Грибов Павел,
* Сергей Солодягин (solodyagin@gmail.com)
* (добавляйте себя если что-то делали)
* http://грибовы.рф
*/
// Запрещаем прямой вызов скрипта.
defined('WUO_ROOT') or die('Доступ запрещён');
$page = GetDef('page', '1');
$limit = GetDef('rows');
$sidx = GetDef('sidx', '1');
$sord = GetDef('sord');
$oper = PostDef('oper');
$groupid = GetDef('groupid');
if ($groupid == '') {
$groupid = PostDef('groupid');
}
$id = PostDef('id');
$name = PostDef('name');
if ($oper == '') {
// Проверяем может ли пользователь просматривать?
$user->TestRoles('1,3,4,5,6') or die('Недостаточно прав');
$result = $sqlcn->ExecuteSQL("SELECT COUNT(*) AS cnt FROM group_param");
$row = mysqli_fetch_array($result);
$count = $row['cnt'];
$total_pages = $count > 0 ? ceil($count / $limit) : 0;
if ($page > $total_pages) {
$page = $total_pages;
}