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


PHP PMA_Bookmark_delete函数代码示例

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


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

示例1: PMA_storeTheQueryAsBookmark

/**
 * Function to store the query as a bookmark
 *
 * @param String  $db                     the current database
 * @param String  $bkm_user               the bookmarking user
 * @param String  $sql_query_for_bookmark the query to be stored in bookmark
 * @param String  $bkm_label              bookmark label
 * @param boolean $bkm_replace            whether to replace existing bookmarks
 *
 * @return void
 */
function PMA_storeTheQueryAsBookmark($db, $bkm_user, $sql_query_for_bookmark, $bkm_label, $bkm_replace)
{
    include_once 'libraries/bookmark.lib.php';
    $bfields = array('bkm_database' => $db, 'bkm_user' => $bkm_user, 'bkm_sql_query' => urlencode($sql_query_for_bookmark), 'bkm_label' => $bkm_label);
    // Should we replace bookmark?
    if (isset($bkm_replace)) {
        $bookmarks = PMA_Bookmark_getList($db);
        foreach ($bookmarks as $key => $val) {
            if ($val == $bkm_label) {
                PMA_Bookmark_delete($key);
            }
        }
    }
    PMA_Bookmark_save($bfields, isset($_POST['bkm_all_users']));
}
开发者ID:harryboulderdash,项目名称:PlayGFC,代码行数:26,代码来源:sql.lib.php

示例2: testDelete

 /**
  * Test for PMA_Bookmark_delete
  *
  * @return void
  */
 public function testDelete()
 {
     $this->assertFalse(PMA_Bookmark_delete('1'));
 }
开发者ID:itgsod-philip-skalander,项目名称:phpmyadmin,代码行数:9,代码来源:PMA_bookmark_test.php

示例3: array

// end bookmarks reading
// Do no run query if we show PHP code
if (isset($GLOBALS['show_as_php'])) {
    $run_query = FALSE;
    $go_sql = TRUE;
}
// Store the query as a bookmark before executing it if bookmarklabel was given
if (!empty($bkm_label) && !empty($import_text)) {
    require_once './libraries/bookmark.lib.php';
    $bfields = array('dbase' => $db, 'user' => $cfg['Bookmark']['user'], 'query' => urlencode($import_text), 'label' => $bkm_label);
    // Should we replace bookmark?
    if (isset($bkm_replace)) {
        $bookmarks = PMA_Bookmark_getList($db);
        foreach ($bookmarks as $key => $val) {
            if ($val == $bkm_label) {
                PMA_Bookmark_delete($db, $key);
            }
        }
    }
    PMA_Bookmark_save($bfields, isset($bkm_all_users));
    $bookmark_created = TRUE;
}
// end store bookmarks
// We can not read all at once, otherwise we can run out of memory
$memory_limit = trim(@ini_get('memory_limit'));
// 2 MB as default
if (empty($memory_limit)) {
    $memory_limit = 2 * 1024 * 1024;
}
// In case no memory limit we work on 10MB chunks
if ($memory_limit == -1) {
开发者ID:davidmottet,项目名称:automne,代码行数:31,代码来源:import.php

示例4: PMA_Bookmark_get

         if ($GLOBALS['is_ajax_request'] == true) {
             $message = PMA_Message::success(__('Showing bookmark'));
             $response = PMA_Response::getInstance();
             $response->isSuccess($message->isSuccess());
             $response->addJSON('message', $message);
             $response->addJSON('sql_query', $import_text);
             $response->addJSON('action_bookmark', $action_bookmark);
             exit;
         } else {
             $run_query = false;
         }
         break;
     case 2:
         // bookmarked query that have to be deleted
         $import_text = PMA_Bookmark_get($db, $id_bookmark);
         PMA_Bookmark_delete($id_bookmark);
         if ($GLOBALS['is_ajax_request'] == true) {
             $message = PMA_Message::success(__('The bookmark has been deleted.'));
             $response = PMA_Response::getInstance();
             $response->isSuccess($message->isSuccess());
             $response->addJSON('message', $message);
             $response->addJSON('action_bookmark', $action_bookmark);
             $response->addJSON('id_bookmark', $id_bookmark);
             exit;
         } else {
             $run_query = false;
             $error = true;
             // this is kind of hack to skip processing the query
         }
         break;
 }
开发者ID:katopenzz,项目名称:openemr,代码行数:31,代码来源:import.php

示例5: testPMA_Bookmark_delete

 /**
  * Test for PMA_Bookmark_delete
  *
  * @return void
  */
 public function testPMA_Bookmark_delete()
 {
     $this->assertFalse(
         PMA_Bookmark_delete('phpmyadmin', '1')
     );
 }
开发者ID:roccivic,项目名称:phpmyadmin,代码行数:11,代码来源:PMA_bookmark_test.php

示例6: testPMA_Bookmark_delete

 /**
  * Test for PMA_Bookmark_delete
  */
 public function testPMA_Bookmark_delete(){
     if (! function_exists('PMA_DBI_try_query')) {
         function PMA_DBI_try_query()
         {
             return false;
         }
     }
     $this->assertFalse(
         PMA_Bookmark_delete('phpmyadmin', '1')
     );
 }
开发者ID:rajatsinghal,项目名称:phpmyadmin,代码行数:14,代码来源:PMA_bookmark_test.php


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