本文整理汇总了PHP中mysql::query_findpole方法的典型用法代码示例。如果您正苦于以下问题:PHP mysql::query_findpole方法的具体用法?PHP mysql::query_findpole怎么用?PHP mysql::query_findpole使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mysql
的用法示例。
在下文中一共展示了mysql::query_findpole方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: indexAction
function indexAction()
{
// товары
$this->catalog_status = mysql::query_findpole('select status from menu where id=59', 'status');
$this->catalog_inctive = dbh::get_count_status_off('catalog');
// заказы
$this->order_inctive = dbh::get_count_status_off('order_number');
// отзывы
$this->gb_status = mysql::query_findpole('select status from menu where id=8', 'status');
$this->gb_inctive = dbh::get_count_status_off('guestbook');
// новости
$this->news_status = mysql::query_findpole('select status from menu where id=1', 'status');
$this->news_inctive = dbh::get_count_status_off('news');
// комментарии к новостям
$this->news_gb_status = mysql::query_findpole('select status from menu where id=232', 'status');
$this->news_gb_inctive = dbh::get_count_status_off('news_gb');
// пользователи
$this->users_status = mysql::query_findpole('select status from menu where id=26', 'status');
$this->users_inctive = dbh::get_count_status_off('users');
// контентовые разделы
$this->content_status = mysql::query_findpole('select status from menu where id=89', 'status');
// галерея
$this->gallery_status = mysql::query_findpole('select status from menu where id=3', 'status');
// голосование
$this->voting_status = mysql::query_findpole('select status from menu where id=102', 'status');
// настройки
$this->config_status = mysql::query_findpole('select status from menu where id=80', 'status');
// CEO
$this->ceo_status = mysql::query_findpole('select status from menu where id=11', 'status');
return system::show_tpl((array) $this, 'mainmenu/mainpage.php');
}
示例2: newAction
/**
* редактируем выбранный материал
*/
function newAction()
{
if ($_POST) {
$this->_width = mysql::query_findpole('select zna from config where id=23', 'zna');
$this->_height = mysql::query_findpole('select zna from config where id=24', 'zna');
$this->_width_b = mysql::query_findpole('select zna from config where id=25', 'zna');
$this->_height_b = mysql::query_findpole('select zna from config where id=26', 'zna');
// проверяем на checkbox
forms::check_box(array('status', 'firstpage', 'alt'));
// записываем в базу
forms::multy_update_form($this->tablename, $_POST['id'], 0);
$this->msg = general::messages(1, v::getI18n('backend_after_save'));
// загружаем фото
forms::multy_update_photo(HOST . IMG_GALLERY_PATH, 1, $_POST['id'], $this->_width, $this->_height, $this->_width_b, $this->_height_b, true);
// строим запрос
$_sql = 'SELECT * FROM ' . $this->tablename . ' where id=' . $_POST['id'];
} else {
// строим запрос
$_sql = 'SELECT * FROM ' . $this->tablename . ' where id=' . $_GET['id'];
}
// выполняем запрос + при необходимости выводим сам запрос
$result = mysql::query_one($_sql, 0);
// выбираем фотоальбомы
$_sql = 'SELECT * FROM gallery_grupa WHERE id_parent=0 order by sort';
$select = mysql::query($_sql, 0);
return system::show_tpl(array('obj' => $result, 'msg' => $this->msg, 'select' => $select, 'tpl_folder' => $this->tpl_folder), $this->tpl_folder . '/new.php');
}
示例3: get_count
/**
* get count
*/
static function get_count()
{
// фильтрация
$_filter = catalog::get_filter();
// запрос
$_sql = 'SELECT count(*) as count FROM catalog where id_parent=' . $_GET['grupa'] . ' and status=1 ' . $_filter;
// выполняем запрос + при необходимости выводим сам запрос
return mysql::query_findpole($_sql, 'count', 0);
}
示例4: get_count_brand
/**
* get count
*/
static function get_count_brand()
{
// фильтрация
$_filter = self::get_filter();
// запрос
$_sql = 'SELECT count(*) as count FROM catalog where status=1 ' . $_filter;
// выполняем запрос + при необходимости выводим сам запрос
return mysql::query_findpole($_sql, 'count', 0);
}
示例5: ___findpole
WHERE catalog.brand=brand.id and catalog.status=1 and brand.status=1 ' . $_filter . '
ORDER BY ' . $_sort . '
LIMIT ' . $limit;
// выполняем запрос + при необходимости выводим сам запрос
$result = mysql::query($_sql, 0);
// наименование бренда
$_brand = ___findpole('select pole from brand where id=' . $id, 'pole');
if ($result) {
$_str .= system::show_tpl(array('result' => $result, '_brand' => $_brand), 'frontend/catalog/brand/list.php');
} else {
$_str .= 'У данного бренда товары отсутствуют.';
}
} else {
// выводим все бренды
// get limit
$limit = pager::pager_limit(brand::get_count(), mysql::query_findpole('select zna from config where id=47', 'zna'));
// строим запрос
$_sql = 'SELECT
brand.*,
count(catalog.id) as count
FROM
brand
Left Outer Join catalog ON brand.id=catalog.brand
WHERE brand.id>0 and brand.status=1
GROUP BY
brand.id
order by brand.sort
LIMIT ' . $limit;
// выполняем запрос + при необходимости выводим сам запрос
$result = mysql::query($_sql, 0);
$_str .= system::show_tpl(array('result' => $result), 'frontend/catalog/brand/all_brands.php');
示例6: count_guestbook
/**
* get count of news
*/
static function count_guestbook()
{
$_sql = 'SELECT count(*) as count FROM guestbook where status=1';
// выполняем запрос + при необходимости выводим сам запрос
return mysql::query_findpole($_sql, 'count', 0);
}
示例7: add_sadminAction
function add_sadminAction()
{
// только для СуперАдмина
if (!general::sadmin()) {
return general::messages(0, v::getI18n('backend_orror_access'));
}
$this->tpl = $this->tpl_folder . '/add' . general::sadmin_tpl() . '.php';
if ($_POST) {
// проверяем на checkbox
forms::check_box(array('status', 'has_podrasdel', 'is_map'));
// проверяем на существование такого action, если есть - добавляем несколько символов
$_sql = 'SELECT count(*) as count FROM ' . $this->tablename . ' where action="' . $_POST['FORM']['action'] . '"';
// выполняем запрос + при необходимости выводим сам запрос
if (mysql::query_findpole($_sql, 'count', 0) > 0) {
$_POST['FORM']['action'] .= '_new';
}
// записываем в базу
forms::multy_insert_form($this->tablename, 0);
$this->msg = general::messages(1, v::getI18n('backend_after_save'));
}
// выбираем разделы у которых могут быть подразделы
$_sql = 'SELECT * FROM ' . $this->tablename . ' where has_podrasdel=1 order by name';
$select = mysql::query($_sql, 0);
return system::show_tpl(array('select' => $select, 'msg' => $this->msg, 'tpl_folder' => $this->tpl_folder), $this->tpl);
}
示例8: intval
<?php
if ($obj->count > 0) {
?>
</a>
<?php
}
?>
<div style="">
<div class="bold"><?php
echo $obj->pole;
?>
</div>
<?php
echo $obj->text;
?>
</div>
</div>
<?php
}
?>
</div>
<?php
// pager
echo brand::get_count() > mysql::query_findpole('select zna from config where id=47', 'zna') ? pager::pager_J("brand", mysql::query_findpole('select zna from config where id=47', 'zna'), brand::get_count(), intval($_GET['page'])) : '';
?>
示例9: define
// НАЧАЛЬНОЕ кол-во комментерией к новостям на одной странице
define('FIRST_COMMENT_NEWS_AT_PAGE', mysql::query_findpole('select zna from config where id=18', 'zna'));
// показывать комментарии к новостям
define('COMMENT_NEWS', 0);
// типы новостей есть/нет
define('TYPE_NEWS', 0);
// массив типов новостей
$_type_news = array('0' => "Новости", '1' => "Новости тип #1", '2' => "Новости тип #2");
// 2011
define('DEFAULT_CTRL', 'page');
define('DEFAULT_ACTION', 'index');
// грузим файлы к разделам?
define('UPLOAD_FILES', false);
// соотносим галереи к разделом?
define('IS_GALLERY_CONTENT', true);
define('SUPER_ADMIN', 0);
// типы баннеров есть/нет
define('TYPE_BANNER', 1);
// массив типов баннеров
$_type_banner = array('0' => "Верхний блок", '1' => "Боковой блок");
/**
* GALLERY
*/
// НАЧАЛЬНОЕ кол-во новостей на одной странице
define('FIRST_GALLERY_AT_PAGE', mysql::query_findpole('select zna from config where id=6', 'zna'));
/**
* GUESTBOOK
*/
// НАЧАЛЬНОЕ кол-во отзывов на одной странице
define('FIRST_GUESTBOOK_AT_PAGE', mysql::query_findpole('select zna from config where id=7', 'zna'));
示例10: count_gallery
/**
* get count of news
*/
static function count_gallery()
{
// получаем группу галереи
$_id_gallery_grupa = dbh::get_gallery_grupa_id($_GET['url']);
if ($_id_gallery_grupa) {
$_sql = 'SELECT count(*) as count FROM gallery where status=1 and id_parent=' . $_id_gallery_grupa;
// выполняем запрос + при необходимости выводим сам запрос
return mysql::query_findpole($_sql, 'count', 0);
}
}
示例11: addAction
/**
* добавляем новый материал
*/
function addAction()
{
if ($_POST) {
$this->_width = mysql::query_findpole('select zna from config where id=42', 'zna');
$this->_height = mysql::query_findpole('select zna from config where id=43', 'zna');
$this->_width_b = mysql::query_findpole('select zna from config where id=44', 'zna');
$this->_height_b = mysql::query_findpole('select zna from config where id=45', 'zna');
// проверяем на checkbox
forms::check_box(array('status'));
// записываем в базу
forms::multy_insert_form($this->tablename, 0);
$this->msg = general::messages(1, v::getI18n('backend_after_save'));
// загружаем фото
forms::multy_update_photo(HOST . IMG_BRAND_PATH, 1, mysql_insert_id(), $this->_width, $this->_height, $this->_width_b, $this->_height_b);
header('Location: /backend/' . $this->tpl_folder . '/index');
}
return system::show_tpl(array('msg' => $this->msg, 'tpl_folder' => $this->tpl_folder), $this->tpl_folder . '/add.php');
}
示例12: count_comment_news
/**
* get count of comment to news
*/
static function count_comment_news($id)
{
// запрос
$_sql = "SELECT count(*) as count FROM news_gb where status=1 and id_news=" . $id;
// выполняем запрос + при необходимости выводим сам запрос
return mysql::query_findpole($_sql, 'count', 0);
}
示例13: create_keh
}
}
*/
if (DEBUG_SITE == 1) {
// время
$profiler->enterSection('echo');
}
// создаем КЕШ сайта
if (USE_KEH == 1) {
create_keh($_str);
}
$str = mysql::query("SELECT * FROM content WHERE status=1 ORDER BY sort", 0);
$music = prizvanie::get_music();
// генерим статику
$_statik = array('TITLE' => mysql::query_findpole('select title_' . $_GET['lang'] . ' from ceo where action="site"', 'title_' . $_GET['lang']), 'KEYWORDS' => mysql::query_findpole('select keywords_' . $_GET['lang'] . ' from ceo where action="site"', 'keywords_' . $_GET['lang']), 'DESCRIPTION' => mysql::query_findpole('select description_' . $_GET['lang'] . ' from ceo where action="site"', 'description_' . $_GET['lang']), 'HEAD' => head1(), 'facebook' => mysql::query_findpole("SELECT zna FROM config WHERE id=1003", 'zna'), 'google' => mysql::query_findpole("SELECT zna FROM config WHERE id=1004", 'zna'), 'youtube' => mysql::query_findpole("SELECT zna FROM config WHERE id=1005", 'zna'), 'skype' => mysql::query_findpole("SELECT zna FROM config WHERE id=1012", 'zna'));
echo system::show_tpl(array('str' => $str, 'statik' => $_statik, 'music' => $music), 'index_full.php');
// *******************************************************
if (DEBUG_SITE == 1) {
// время
$profiler->leaveSection('echo');
}
// вывод/невывод дебаггера
if (DEBUG_SITE == 1) {
echo '<div id="debug" style="float: left; width: 100%; border: solid red 0px; background: #C0C0C0; ">';
// время
$profiler->stop();
$profiler->display();
// дебагер
debug();
echo "</div>";
示例14: voting_count_child
/**
* получаем кол-во детей контент
* @param int parent_id
*/
static function voting_count_child($parent_id)
{
$_sql = 'SELECT count(*) as count FROM voting where id_parent=' . $parent_id;
// выполняем запрос + при необходимости выводим сам запрос
return mysql::query_findpole($_sql, 'count', 0);
}
示例15: max
$height_b = mysql::query_findpole('select zna from config where id=26', 'zna');
/*
// caa?o?aai oioi
forms::multy_update_photo(
HOST.IMG_SPLASH_PATH,
1,
mysql_insert_id(),
$width,
$height,
$width_b,
$height_b,
true
);
*/
if ($_FILES[$upload_name]['name'] != "") {
$name_file_destination = mysql::query_findpole('select max(id) as id from splash', 'id') . ".jpg";
// -------------------------------------------------------------------
$fileuplo = HOST . IMG_SPLASH_PATH . '/' . md5($_FILES[$upload_name]['name']);
move_uploaded_file($_FILES[$upload_name]['tmp_name'], $fileuplo);
// -------------------------------------------------------------------
$size = getimagesize($fileuplo);
$width_b = $size[0];
$height_b = $size[1];
$filename = HOST . IMG_SPLASH_PATH . '/' . $name_file_destination;
$filename1 = HOST . IMG_SPLASH_PATH . '/_' . $name_file_destination;
////////////////////////////////////////////////////////////////////////////////
// Для GD
////////////////////////////////////////////////////////////////////////////////
if (_IMAGE_MAGICK == 0) {
require_once HOST . "/backend/classes/imagemanager.class.php";
$iman = ImageManager::Instance();