本文整理汇总了PHP中synccache::emptyCache方法的典型用法代码示例。如果您正苦于以下问题:PHP synccache::emptyCache方法的具体用法?PHP synccache::emptyCache怎么用?PHP synccache::emptyCache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类synccache
的用法示例。
在下文中一共展示了synccache::emptyCache方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run
public function run()
{
$files = glob($this->dir . '*.php');
foreach ($files as $file) {
$filename = basename($file, '.php');
$content = file_get_contents($file);
// Can't use REPLACE as the name column isn't indexed
#$res = $modx->db->query("REPLACE INTO $table SET {$component[$type]['col_content']} = '". mysql_real_escape_string($content, $modx->db->conn) ."' WHERE {$component[$type]['col_name']} = '". $filename ."'");
$id = $this->modx->db->getValue("SELECT id FROM {$this->table} WHERE {$this->component[$this->type]['col_name']} = '" . $filename . "'");
if ($id) {
$res = $this->modx->db->query("UPDATE {$this->table} SET {$this->component[$this->type]['col_content']} = '" . $this->modx->db->escape($content, $this->modx->db->conn) . "' WHERE {$this->component[$this->type]['col_name']} = '" . $filename . "'");
$updated_items[] = $filename;
} else {
$res = $this->modx->db->query("INSERT INTO {$this->table} SET {$this->component[$this->type]['col_content']} = '" . $this->modx->db->escape($content, $this->modx->db->conn) . "', {$this->component[$this->type]['col_name']} = '" . $filename . "'");
$new_items[] = $filename;
}
$fs_items[] = $filename;
}
// Handle items which may now be in the DB/filesystem but are no longer present in the filesystem/db
// (i.e. remove deleted resources)
$this->fs_items = $fs_items;
$this->new_items = $new_items;
$this->updated_items = $updated_items;
// Clear cache if sync'ing back to DB - as chunks etc are cached there
include_once $this->modx->config['base_path'] . "manager/processors/cache_sync.class.processor.php";
$sync = new synccache();
$sync->setCachepath($this->modx->config['base_path'] . "assets/cache/");
$sync->setReport(false);
$sync->emptyCache();
// first empty the cache
}
示例2: clearCache
public final function clearCache($fire_events = null)
{
$this->modx->clearCache();
include_once $this->modx->getManagerPath() . '/processors/cache_sync.class.processor.php';
$sync = new synccache();
$sync->setCachepath($this->modx->getCachePath());
$sync->setReport(false);
$sync->emptyCache();
$this->invokeEvent('OnSiteRefresh', array(), $fire_events);
}
示例3: saveconfig
function saveconfig()
{
global $shop_lang, $modx;
$user = $modx->userLoggedIn();
$act = $_GET['act'];
if ($user['usertype'] == "manager") {
if (!empty($act) && $act == "saveconfig") {
foreach ($_GET as $key => $value) {
if ($key != "a" && $key != "id" && $key != "act" && $key != "act2" && $key != "act3") {
//echo $value;
setConf("", $key, $value, 1);
}
}
include_once $modx->config['base_path'] . "manager/processors/cache_sync.class.processor.php";
$sync = new synccache();
$sync->setCachepath($modx->config['base_path'] . "assets/cache/");
$sync->setReport(false);
$sync->emptyCache();
// first empty the cache
regenConf();
return "<span class='ok'>" . $shop_lang['saveok'] . "</span>";
}
}
}
示例4: DocumentParser
$callBackFnc($sqlParser);
}
// Setup the MODx API -- needed for the cache processor
define('MODX_API_MODE', true);
define('MODX_BASE_PATH', $base_path);
$database_type = 'mysql';
// initiate a new document parser
include_once '../manager/includes/document.parser.class.inc.php';
$modx = new DocumentParser();
$modx->db->connect();
// always empty cache after install
include_once "../manager/processors/cache_sync.class.processor.php";
$sync = new synccache();
$sync->setCachepath("../assets/cache/");
$sync->setReport(false);
$sync->emptyCache();
// first empty the cache
// try to chmod the cache go-rwx (for suexeced php)
$chmodSuccess = @chmod('../assets/cache/siteCache.idx.php', 0600);
$chmodSuccess = @chmod('../assets/cache/sitePublishing.idx.php', 0600);
// remove any locks on the manager functions so initial manager login is not blocked
mysql_query("TRUNCATE TABLE `" . $table_prefix . "active_users`");
// close db connection
$sqlParser->close();
// andrazk 20070416 - release manager access
if (file_exists('../assets/cache/installProc.inc.php')) {
@chmod('../assets/cache/installProc.inc.php', 0755);
unlink('../assets/cache/installProc.inc.php');
}
// setup completed!
echo "<p><b>" . $_lang['installation_successful'] . "</b></p>";
示例5: clearCache
/**
* Clear the cache of MODX.
*
* @return boolean
*/
function clearCache($type = '', $report = false)
{
if ($type == 'full') {
include_once MODX_MANAGER_PATH . 'processors/cache_sync.class.processor.php';
$sync = new synccache();
$sync->setCachepath(MODX_BASE_PATH . 'assets/cache/');
$sync->setReport($report);
$sync->emptyCache();
} else {
$files = glob(MODX_BASE_PATH . 'assets/cache/*');
$deletedfiles = array();
while ($file = array_shift($files)) {
$name = basename($file);
if (preg_match('/\\.pageCache/', $name) && !in_array($name, $deletedfiles)) {
$deletedfiles[] = $name;
unlink($file);
clearstatcache();
}
}
}
}
示例6: regenConf
function regenConf()
{
global $modx;
$query = "SELECT * FROM " . $modx->getFullTableName('shop_conf') . " WHERE exported=1 ORDER BY module, name";
if (!($result = $modx->db->query($query))) {
exit('Query failed: ' . mysql_error());
}
$f = fopen($modx->config['base_path'] . 'assets/snippets/tsvshop/include/config.inc.php', 'w') or die('Can not open config.inc.php for writing!');
$js = fopen($modx->config['base_path'] . 'assets/snippets/tsvshop/js/config.js', 'w') or die('Can not open config.inc.php for writing!');
fwrite($f, "<?php // This file is automatically generated. Do not edit.\n\n");
fwrite($js, "// This file is automatically generated. Do not edit.\n\n");
while ($row = mysql_fetch_row($result)) {
//$mod = strtoupper($row[0]);
//$nam = strtoupper($row[1]);
$mod = $row[0];
$nam = $row[1];
$val = $row[2];
// write numerics directly
if (is_numeric($val)) {
//fwrite($f, "define('$mod"."_$nam', $val);\n");
if (!empty($mod)) {
//fwrite($f, "define('$mod"."_$nam', $val);\n");
if (!empty($val)) {
fwrite($f, "\$tsvshop['" . $mod . "_" . $nam . "']=" . $val . ";\n");
} else {
fwrite($f, "\$tsvshop['" . $mod . "_" . $nam . "']='';\n");
}
//if ($val=="0,00") {$val="'0,00'";}
//fwrite($js, $mod."_".$nam."=".$val.";\n");
} else {
if (!empty($val)) {
fwrite($f, "\$tsvshop['" . $nam . "']=" . $val . ";\n");
if ($val == "0,00") {
$val = "'0,00'";
}
fwrite($js, $nam . "=" . $val . ";\n");
} else {
fwrite($f, "\$tsvshop['" . $nam . "']='';\n");
if ($val == "0,00") {
$val = "'0,00'";
}
fwrite($js, $nam . "='';\n");
}
}
} else {
// escape the single quotes
$val = str_replace('\'', '\\\'', $val);
// end-of-php will break the conf.php; replace it:
$val = str_replace('?' . '>', "?'.'>", $val);
//fwrite($f,"define('$mod"."_$nam', '$val');\n");
if (!empty($mod)) {
//fwrite($f, "define('$mod"."_$nam', $val);\n");
if (!empty($val)) {
fwrite($f, "\$tsvshop['" . $mod . "_" . $nam . "']='" . $val . "';\n");
} else {
fwrite($f, "\$tsvshop['" . $mod . "_" . $nam . "']='';\n");
}
//if ($val=="0,00") {$val="'0,00'";}
//fwrite($js, $mod."_".$nam."=".$val.";\n");
} else {
if (!empty($val)) {
fwrite($f, "\$tsvshop['" . $nam . "']='" . $val . "';\n");
if ($val == "0,00") {
$val = "0,00";
}
fwrite($js, $nam . "='" . $val . "';\n");
} else {
fwrite($f, "\$tsvshop['" . $nam . "']='';\n");
if ($val == "0,00") {
$val = "'0,00'";
}
fwrite($js, $nam . "='';\n");
}
}
}
}
fwrite($f, '?' . '>');
fclose($f);
fclose($js);
/* Clear Cache of MODx*/
include_once $modx->config['base_path'] . "manager/processors/cache_sync.class.processor.php";
$sync = new synccache();
$sync->setCachepath($modx->config['base_path'] . "assets/cache/");
$sync->setReport(false);
$sync->emptyCache();
// first empty the cache
// invoke OnSiteRefresh event
$modx->invokeEvent("OnSiteRefresh");
}
示例7: clearCache
function clearCache()
{
// Clear cache
include_once $this->modx->config['base_path'] . "manager/processors/cache_sync.class.processor.php";
$sync = new synccache();
$sync->setCachepath($this->modx->config['base_path'] . "assets/cache/");
$sync->setReport(false);
$sync->emptyCache();
}
示例8: clearCache
public final function clearCache($fire_events = null, $custom = false)
{
$IDs = array();
if ($custom === false) {
$this->modx->clearCache();
include_once MODX_MANAGER_PATH . 'processors/cache_sync.class.processor.php';
$sync = new synccache();
$path = $this->getCachePath(true);
$sync->setCachepath($path);
$sync->setReport(false);
$sync->emptyCache();
} else {
if (is_scalar($custom)) {
$custom = array($custom);
}
$files = array();
switch ($this->modx->config['cache_type']) {
case 2:
$cacheFile = "_*.pageCache.php";
break;
default:
$cacheFile = ".pageCache.php";
}
if (is_array($custom)) {
foreach ($custom as $id) {
$tmp = glob(MODX_BASE_PATH . "assets/cache/docid_" . $id . $cacheFile);
foreach ($tmp as $file) {
if (is_readable($file)) {
unlink($file);
}
$IDs[] = $id;
}
}
}
clearstatcache();
}
$this->invokeEvent('OnSiteRefresh', array('IDs' => $IDs), $fire_events);
}
示例9: clearVars
/**
* Удаляем все неиспользуемые параметры товаров снятых с производства
* @
*/
function clearVars()
{
// Удалим все TV параметры не спользуемые в шаблоне для товаров снятых с производства
if ($this->config['clear_tvs'] && $this->config['product_prodution_tpl_id'] && $this->config['prodution_catalog_id']) {
$tv_p_res = $this->query("SELECT tmplvarid FROM " . $this->modx->getFullTableName('site_tmplvar_templates') . " WHERE templateid = " . $this->config['product_tpl_id']);
while ($tv = mysql_fetch_array($tv_p_res)) {
$tv_product[] = $tv[0];
}
$tv_p_p_res = $this->query("SELECT tmplvarid FROM " . $this->modx->getFullTableName('site_tmplvar_templates') . " WHERE templateid = " . $this->config['product_prodution_tpl_id']);
while ($tv = mysql_fetch_array($tv_p_p_res)) {
$tv_product_prodution[] = $tv[0];
}
$this->query("DELETE FROM " . $this->config['tbl_catalog_tv'] . " \n\t\t\t\t\tWHERE contentid IN (" . implode(',', $this->modx->getChildIds($this->config['prodution_catalog_id'])) . ") \n\t\t\t\t\tAND tmplvarid IN (" . implode(",", array_diff($tv_product, $tv_product_prodution)) . ")");
}
// Полная очистка кэша
$this->modx->clearCache();
include_once MODX_BASE_PATH . 'manager/processors/cache_sync.class.processor.php';
$sync = new synccache();
$sync->setCachepath(MODX_BASE_PATH . "assets/cache/");
$sync->setReport(false);
$sync->emptyCache();
}
示例10: Run
function Run()
{
// Include MODx manager language file
global $_lang;
include_once $this->modx->config['base_path'] . 'manager/includes/lang/' . $this->modx->config['manager_language'] . '.inc.php';
// Get event
$e = $this->modx->Event;
// Run plugin based on event
switch ($e->name) {
// Save document
case 'OnDocFormSave':
// Saving process for Qm only, confirm HTTP_REFERER
if (!empty($_SERVER['HTTP_REFERER']) && strpos($_SERVER['HTTP_REFERER'], 'quickmanager=true') !== false) {
$id = $e->params['id'];
$key = $id;
// Normal saving document procedure stops to redirect => Before redirecting secure documents and clear cache
// Secure web documents - flag as private (code from: manager/processors/save_content.processor.php)
include $this->modx->config['base_path'] . "manager/includes/secure_web_documents.inc.php";
secureWebDocument($key);
// Secure manager documents - flag as private (code from: manager/processors/save_content.processor.php)
include $this->modx->config['base_path'] . "manager/includes/secure_mgr_documents.inc.php";
secureMgrDocument($key);
// Clear cache
include_once $this->modx->config['base_path'] . "manager/processors/cache_sync.class.processor.php";
$sync = new synccache();
$sync->setCachepath($this->modx->config['base_path'] . "assets/cache/");
$sync->setReport(true);
$sync->emptyCache();
// Redirect to clearer page which refreshes parent window and closes ColorBox frame
$this->modx->sendRedirect($this->modx->config['base_url'] . 'assets/plugins/qm/close.php?id=' . $id . '&baseurl=' . $this->modx->config['base_url'], 0, 'REDIRECT_HEADER', 'HTTP/1.1 301 Moved Permanently');
}
break;
// Display page in front-end
// Display page in front-end
case 'OnWebPagePrerender':
// If logged in manager but not in manager preview show control buttons
if (isset($_SESSION['mgrValidated']) && $_REQUEST['z'] != 'manprev') {
$output =& $this->modx->documentOutput;
// If logout break here
if (isset($_REQUEST['logout'])) {
$this->Logout();
break;
}
$userID = $_SESSION['mgrInternalKey'];
$docID = $this->modx->documentIdentifier;
$doc = $this->modx->getDocument($docID);
// Edit button
$editButton = '
<li>
<a class="qmButton qmEdit colorbox" title="' . $doc['pagetitle'] . ' » ' . $_lang['edit_document'] . '" href="' . $this->modx->config['site_url'] . 'manager/index.php?a=27&id=' . $docID . '&quickmanager=true">' . $_lang['edit_document'] . '</a>
</li>';
// Does user have permissions to edit document
if ($this->modx->hasPermission('edit_document')) {
$controls .= $editButton;
}
if ($this->addbutton == 'true') {
// Add button
$addButton = '
<li>
<a class="qmButton qmAdd colorbox" title="' . $doc['pagetitle'] . ' » ' . $_lang['create_document_here'] . '" href="' . $this->modx->config['site_url'] . 'manager/index.php?a=4&pid=' . $docID . '&quickmanager=true">' . $_lang['create_document_here'] . '</a>
</li>';
// Does user have permissions to add document
if ($this->modx->hasPermission('new_document')) {
$controls .= $addButton;
}
}
// Not implemented yet
//$delButton = '<a class="button delete" title="'.$doc['pagetitle'].'» '.$_lang['delete_document'].'" href="#" onclick="if(confirm(\'`'.$doc['pagetitle'].'`\n\n'.$_lang['confirm_delete_document'].'\')==true) document.location.href=\''.$this->modx->config['site_url'].'manager/index.php?a=4&id='.$docID.'\';return false;">'.$_lang['delete_document'].'</a>';
//if($this->modx->hasPermission('delete_document')) $controls.=$delButton;
// Logout button
$logout = $this->modx->config['site_url'] . 'manager/index.php?a=8';
$logoutButton = '
<li>
<a class="qmButton qmLogout" title="' . $_lang['logout'] . '" href="' . $logout . '" ><!--img src="' . MODX_BASE_URL . 'assets/plugins/qm/res/exit.png" alt="Edit" /-->' . $_lang['logout'] . '</a>
</li>';
$controls .= $logoutButton;
$editor = '
<div id="qmEditor" class="actionButtons">
<ul>' . $controls . '
</ul>
</div>';
$css = '<link rel="stylesheet" type="text/css" href="assets/plugins/qm/res/style.css" />';
// Insert jQuery and ColorBox in head if needed
if ($this->loadfrontendjq == 'true') {
$head .= '<script src="' . $this->modx->config['site_url'] . $this->jqpath . '" type="text/javascript"></script>';
}
if ($this->loadtb == 'true') {
$head .= '
<script type="text/javascript" src="' . $this->modx->config['site_url'] . 'assets/js/jquery.colorbox-min.js"></script>
<link type="text/css" media="screen" rel="stylesheet" href="' . $this->modx->config['site_url'] . 'assets/js/colorbox.css" />
<!--[if IE]>
<link type="text/css" media="screen" rel="stylesheet" href="' . $this->modx->config['site_url'] . 'assets/js/colorbox-ie.css" title="example" />
<![endif]-->
<script type="text/javascript">
var $j = jQuery.noConflict();
$j(document).ready(function($){
$("a.colorbox").colorbox({width:"' . $this->tbwidth . '", height:"' . $this->tbheight . '", iframe:true});
});
function cb_remove(){
//.........这里部分代码省略.........
示例11: Run
function Run()
{
// Include MODx manager language file
global $_lang;
// Get manager language
$manager_language = $this->modx->config['manager_language'];
// Include_once the language file
if (!isset($manager_language) || !file_exists(MODX_MANAGER_PATH . "includes/lang/" . $manager_language . ".inc.php")) {
$manager_language = "english";
// if not set, get the english language file.
}
// Include default language
include_once MODX_MANAGER_PATH . "includes/lang/english.inc.php";
// Include user language
if ($manager_language != "english" && file_exists(MODX_MANAGER_PATH . "includes/lang/" . $manager_language . ".inc.php")) {
include_once MODX_MANAGER_PATH . "includes/lang/" . $manager_language . ".inc.php";
}
// Get event
$e = $this->modx->Event;
// Run plugin based on event
switch ($e->name) {
// Save document
case 'OnDocFormSave':
// Saving process for Qm only
if (intval($_REQUEST['quickmanager']) == 1) {
$id = $e->params['id'];
$key = $id;
// Normal saving document procedure stops to redirect => Before redirecting secure documents and clear cache
// Secure web documents - flag as private (code from: manager/processors/save_content.processor.php)
include $this->modx->config['base_path'] . "manager/includes/secure_web_documents.inc.php";
secureWebDocument($key);
// Secure manager documents - flag as private (code from: manager/processors/save_content.processor.php)
include $this->modx->config['base_path'] . "manager/includes/secure_mgr_documents.inc.php";
secureMgrDocument($key);
// Clear cache
include_once $this->modx->config['base_path'] . "manager/processors/cache_sync.class.processor.php";
$sync = new synccache();
$sync->setCachepath($this->modx->config['base_path'] . "assets/cache/");
$sync->setReport(true);
$sync->emptyCache();
// Redirect to clearer page which refreshes parent window and closes modal box frame
$this->modx->sendRedirect($this->modx->config['base_url'] . 'assets/plugins/qm/close.php?id=' . $id, 0, 'REDIRECT_HEADER', 'HTTP/1.1 301 Moved Permanently');
}
break;
// Display page in front-end
// Display page in front-end
case 'OnWebPagePrerender':
// If logged in manager but not in manager preview show control buttons
if (isset($_SESSION['mgrValidated']) && $_REQUEST['z'] != 'manprev') {
$output =& $this->modx->documentOutput;
// If logout break here
if (isset($_REQUEST['logout'])) {
$this->Logout();
break;
}
$userID = $_SESSION['mgrInternalKey'];
$docID = $this->modx->documentIdentifier;
$doc = $this->modx->getDocument($docID);
// Edit button
$editButton = '
<li>
<a class="qmButton qmEdit colorbox" href="' . $this->modx->config['site_url'] . 'manager/index.php?a=27&id=' . $docID . '&quickmanager=1"><span> ' . $_lang['edit_resource'] . '</span></a>
</li>
';
// Check if user has manager access to current document
$access = $this->checkAccess();
// Does user have permissions to edit document
if ($access) {
$controls .= $editButton;
}
if ($this->addbutton == 'true' && $access) {
// Add button
$addButton = '
<li>
<a class="qmButton colorbox" href="' . $this->modx->config['site_url'] . 'manager/index.php?a=4&pid=' . $docID . '&quickmanager=1">' . $_lang['create_resource_here'] . '</a>
</li>
';
// Does user have permissions to add document
if ($this->modx->hasPermission('new_document')) {
$controls .= $addButton;
}
}
// Custom add buttons if not empty and enough permissions
if ($this->custombutton != '') {
$buttons = explode("||", $this->custombutton);
// Buttons are divided by "#"
// Parse buttons
foreach ($buttons as $key => $field) {
$field = substr($field, 1, -1);
// Trim "'" from beginning and from end
$buttonParams = explode("','", $field);
// Button params are divided by "','"
$buttonTitle = $buttonParams[0];
$buttonAction = $buttonParams[1];
// Contains URL if this is not add button
$buttonParentId = $buttonParams[2];
// Is empty is this is not add button
$buttonTplId = $buttonParams[3];
// Button visible for all
if ($buttonParams[4] == '') {
//.........这里部分代码省略.........
示例12: emptyCache
function emptyCache()
{
global $modx;
// empty cache
include_once $modx->config['base_path'] . 'manager/processors/cache_sync.class.processor.php';
$sync = new synccache();
$sync->setCachepath($modx->config['base_path'] . 'assets/cache/');
$sync->setReport(false);
$sync->emptyCache();
// first empty the cache
}
示例13: clearCache
function clearCache()
{
include_once "processors/cache_sync.class.processor.php";
$sync = new synccache();
$sync->setCachepath("../assets/cache/");
$sync->setReport(false);
$sync->emptyCache();
}
示例14: clearCache
function clearCache($params = array())
{
if ($this->isBackend() && !$this->hasPermission('empty_cache')) {
return;
}
if (opendir(MODX_BASE_PATH . 'assets/cache') !== false) {
$showReport = $params['showReport'] ? $params['showReport'] : false;
$target = $params['target'] ? $params['target'] : 'pagecache,sitecache';
include_once MODX_MANAGER_PATH . 'processors/cache_sync.class.processor.php';
$sync = new synccache();
$sync->setCachepath(MODX_BASE_PATH . 'assets/cache/');
$sync->setReport($showReport);
$sync->setTarget($target);
$sync->emptyCache();
// first empty the cache
return true;
} else {
return false;
}
}
示例15: syncsite
public function syncsite()
{
$do_sync = isset($_POST['syncsite']) ? $_POST['syncsite'] : 0;
if ($do_sync == 1) {
// empty cache
include_once MODX_BASE_PATH.'manager/processors/cache_sync.class.processor.php';
$sync = new synccache();
$sync->setCachepath(MODX_BASE_PATH.'assets/cache/');
$sync->setReport(false);
$sync->emptyCache();
}
}