本文整理汇总了PHP中storage::remove方法的典型用法代码示例。如果您正苦于以下问题:PHP storage::remove方法的具体用法?PHP storage::remove怎么用?PHP storage::remove使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类storage
的用法示例。
在下文中一共展示了storage::remove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: image
$found_hc_id = $storage->id;
break;
}
}
}
if ($found_hc) {
// remove all AMI Images, then the storage
$image = new image();
$hc_image_list = $image->get_ids_by_storage($found_hc_id);
foreach ($hc_image_list as $list) {
foreach ($list as $hc_image_id) {
$image->remove($hc_image_id);
$event->log("init", $_SERVER['REQUEST_TIME'], 5, "hybrid-cloud-ation", "Removed AMI Image Object " . $hc_image_id . ".", "", "", 0, 0, 0);
}
}
$storage->remove($found_hc_id);
}
// remove cloud products
if (file_exists($cloud_usergroup_class)) {
require_once $cloud_usergroup_class;
$cloud_project = new cloudusergroup();
$cloud_project->get_instance_by_name('Admin');
if (file_exists($cloud_selector_class)) {
if (file_exists($cloud_product_hook)) {
$cloud_hook_config = array();
$cloud_hook_config['cloud_admin_procect'] = $cloud_project->id;
require_once $cloud_product_hook;
openqrm_hybrid_cloud_cloud_product("remove", $cloud_hook_config);
}
}
}