本文整理汇总了PHP中graphics::deactivate_rules方法的典型用法代码示例。如果您正苦于以下问题:PHP graphics::deactivate_rules方法的具体用法?PHP graphics::deactivate_rules怎么用?PHP graphics::deactivate_rules使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类graphics
的用法示例。
在下文中一共展示了graphics::deactivate_rules方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update_rules
static function update_rules()
{
// Make sure our thumb size matches the gallery one
$thumb_size = module::get_var("gallery", "thumb_size");
if ($thumb_size != module::get_var("custom_albums", "thumb_size")) {
// Remove and readd our rule with the latest thumb size
graphics::remove_rule("custom_albums", "thumb", "custom_albums_graphics::build_thumb");
graphics::add_rule("custom_albums", "thumb", "custom_albums_graphics::build_thumb", array("width" => $thumb_size, "height" => $thumb_size, "master" => Image::AUTO), 101);
// Deactivate the gallery thumbnail generation, we'll handle it now
graphics::deactivate_rules("gallery");
module::set_var("custom_albums", "thumb_size", $thumb_size);
}
// Make sure our resize size matches the gallery one
$resize_size = module::get_var("gallery", "resize_size");
if ($resize_size != module::get_var("custom_albums", "resize_size")) {
// Remove and readd our rule with the latest resize size
graphics::remove_rule("custom_albums", "resize", "custom_albums_graphics::build_resize");
graphics::add_rule("custom_albums", "resize", "custom_albums_graphics::build_resize", array("width" => $resize_size, "height" => $resize_size, "master" => Image::AUTO), 101);
// Deactivate the gallery resize, we'll handle it now
graphics::deactivate_rules("gallery");
module::set_var("custom_albums", "resize_size", $resize_size);
}
}
示例2: deactivate
/**
* Deactivate an installed module. This will call <module>_installer::deactivate() which should
* take any cleanup steps to make sure that the module isn't visible in any way. Note that the
* module remains available in Kohana's cascading file system until the end of the request!
* @param string $module_name
*/
static function deactivate($module_name)
{
$installer_class = "{$module_name}_installer";
if (class_exists($installer_class) && method_exists($installer_class, "deactivate")) {
call_user_func_array(array($installer_class, "deactivate"), array());
}
$module = module::get($module_name);
if ($module->loaded()) {
$module->active = false;
$module->save();
}
module::load_modules();
graphics::deactivate_rules($module_name);
block_manager::deactivate_blocks($module_name);
if (module::info($module_name)) {
log::success("module", t("Deactivated module %module_name", array("module_name" => $module_name)));
} else {
log::success("module", t("Deactivated missing module %module_name", array("module_name" => $module_name)));
}
}
示例3: deactivate
/**
* Deactivate an installed module. This will call <module>_installer::deactivate() which should
* take any cleanup steps to make sure that the module isn't visible in any way. Note that the
* module remains available in Kohana's cascading file system until the end of the request!
* @param string $module_name
*/
static function deactivate($module_name)
{
$installer_class = "{$module_name}_installer";
if (method_exists($installer_class, "deactivate")) {
call_user_func_array(array($installer_class, "deactivate"), array());
}
$module = self::get($module_name);
if ($module->loaded) {
$module->active = false;
$module->save();
}
module::load_modules();
graphics::deactivate_rules($module_name);
log::success("module", t("Deactivated module %module_name", array("module_name" => $module_name)));
}