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


PHP graphics::mark_dirty方法代碼示例

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


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

示例1: remove_rules

 /**
  * Remove all rules for this module
  * @param string $module_name
  */
 static function remove_rules($module_name)
 {
     $status = db::build()->delete("graphics_rules")->where("module_name", "=", $module_name)->execute();
     if (count($status)) {
         graphics::mark_dirty(true, true);
     }
 }
開發者ID:assad2012,項目名稱:gallery3-appfog,代碼行數:11,代碼來源:graphics.php

示例2: save

 public function save()
 {
     access::verify_csrf();
     $form = $this->_get_admin_form();
     if ($form->validate()) {
         module::set_var("gallery", "movie_allow_uploads", $form->settings->allow_uploads->value);
         if ($form->settings->rebuild_thumbs->value) {
             graphics::mark_dirty(true, false, "movie");
         }
         // All done - redirect with message.
         message::success(t("Movies settings updated successfully"));
         url::redirect("admin/movies");
     }
     // Something went wrong - print view from existing form.
     $this->_print_view($form);
 }
開發者ID:HarriLu,項目名稱:gallery3,代碼行數:16,代碼來源:admin_movies.php

示例3: mark_dirty

 /**
  * Mark all PDF thumbs as dirty
  * (ref: graphics::mark_dirty())
  */
 static function mark_dirty()
 {
     graphics::mark_dirty(true, false, "movie", "application/pdf");
 }
開發者ID:webmatter,項目名稱:gallery3-contrib,代碼行數:8,代碼來源:pdf.php

示例4: uninstall

 public function uninstall()
 {
     $items = ORM::factory('item')->find_all();
     foreach ($items as $item) {
         $path = $item->file_path() . $name;
         $orig = str_replace(VARPATH . 'albums/', VARPATH . 'originals/', $path);
         if (file_exists($orig)) {
             @unlink($path);
             @rename($orig, $path);
         }
     }
     graphics::mark_dirty(1, 1);
     Database::instance()->query('DROP TABLE {emboss_overlays}');
     Database::instance()->query('DROP TABLE {emboss_mappings}');
     Database::instancs()->query("delete from {modules} where name='emboss'");
     log::info('emboss', 'module uninstalled (database dropped/overlays removed)');
 }
開發者ID:webmatter,項目名稱:gallery3-contrib,代碼行數:17,代碼來源:emboss.php

示例5: dirty

 static function dirty($target)
 {
     graphics::mark_dirty($target == "thumb", $target == "resize");
 }
開發者ID:webmatter,項目名稱:gallery3-contrib,代碼行數:4,代碼來源:image_optimizer.php


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