API16

JCacheStorage/clean: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Clean cache for a group given a mode. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>...
 
m preparing for archive only
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
Clean cache for a group given a mode.
Clean cache for a group given a mode.


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JCacheStorage/clean|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JCacheStorage/clean}}
 
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 42: Line 40:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JCacheStorage/clean|Edit See Also]]<nowiki>]</nowiki>
<! removed transcluded page call, red link never existed >
</span>
{{SeeAlso:JCacheStorage/clean}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=clean
  category=clean
  category=JCacheStorage
  category=JCacheStorage
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API16]]

Latest revision as of 01:22, 25 March 2017

Description

Clean cache for a group given a mode.


<! removed transcluded page call, red link never existed >

Syntax

clean($group, $mode)
Parameter Name Default Value Description
$group $group The cache data group
$mode notgroup]

Returns

boolean True on success, false otherwise

Defined in

libraries/joomla/cache/storage.php

Importing

jimport( 'joomla.cache.storage' );

Source Body

function clean($group, $mode)
{
        return true;
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples