當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Configuration::delete方法代碼示例

本文整理匯總了PHP中Configuration::delete方法的典型用法代碼示例。如果您正苦於以下問題:PHP Configuration::delete方法的具體用法?PHP Configuration::delete怎麽用?PHP Configuration::delete使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Configuration的用法示例。


在下文中一共展示了Configuration::delete方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: uninstall

 public function uninstall()
 {
     if (!parent::uninstall() || !Configuration::delete('MOD_BLOCKHOMECATS_CATS')) {
         return false;
     }
     return true;
 }
開發者ID:WhisperingTree,項目名稱:etagerca,代碼行數:7,代碼來源:blockhomecats.php

示例2: flushRoutes

 public function flushRoutes()
 {
     \Configuration::delete('admin_routes');
     return \Redirect::to('admin');
 }
開發者ID:hramose,項目名稱:laravel5-admin,代碼行數:5,代碼來源:AdminController.php

示例3: remove

 /**
  * Remove configuration value in database with specified key
  * #### Example
  * ```php
  * global $conf; // global var, contain configurations
  * echo $conf->remove('myNewConfigKey'); //delete myNewConfigKey from 'conf' default namespace 
  * echo $conf->remove('myNewConfigKey','myCustomPluginConfig'); //delete myNewConfigKey from 'myCustomPluginConfig' namespace
  * ```
  * @param string configuration key
  * @param string configuration namespace (default is 'conf')
  */
 public function remove($key, $ns = 'conf')
 {
     $configurationManager = new Configuration();
     if (isset($this->confTab[$ns][$key])) {
         $configurationManager->delete(array('key' => $ns . ':' . $key));
     }
     unset($this->confTab[$ns][$key]);
     unset($_SESSION['configuration']);
 }
開發者ID:rikimaruneo,項目名稱:yana-server,代碼行數:20,代碼來源:Configuration.class.php

示例4: Sensor

<?php

/* 
	Le code contenu dans cette page ne sera éxecuté qu'à la désactivation du plugin 
	Vous pouvez donc l'utiliser pour supprimer des tables SQLite, des dossiers, ou executer une action
*/
require_once 'Sensor.class.php';
require_once 'SensorType.class.php';
$table = new Sensor();
$table2 = new SensorType();
$table->drop();
$table2->drop();
$conf = new Configuration();
$conf->delete(array('key' => 'plugin_sensor_receptor_pin'));
$table_section = new Section();
$id_section = $table_section->load(array("label" => "sensor"))->getId();
$id_section2 = $table_section->load(array("label" => "sensortypes"))->getId();
$table_section->delete(array('label' => 'sensor'));
$table_section2->delete(array('label' => 'sensortypes'));
$table_right = new Right();
$table_right->delete(array('section' => $id_section));
$table_right->delete(array('section' => $id_section2));
開發者ID:sachaw0lf,項目名稱:yana-sensor-plugin,代碼行數:22,代碼來源:uninstall.php


注:本文中的Configuration::delete方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。