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


PHP graphics::deactivate_rules方法代碼示例

本文整理匯總了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);
     }
 }
開發者ID:Retroguy,項目名稱:gallery3-contrib,代碼行數:23,代碼來源:custom_albums_installer.php

示例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)));
     }
 }
開發者ID:HarriLu,項目名稱:gallery3,代碼行數:26,代碼來源:module.php

示例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)));
 }
開發者ID:kstyrvoll,項目名稱:gallery3,代碼行數:21,代碼來源:module.php


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