当前位置: 首页>>代码示例>>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;未经允许,请勿转载。