Moodle PHP Documentation 4.5
Moodle 4.5dev (Build: 20240606) (d3ae1391abe)
Base Interface Reference

Base for cache objects. More...

Public Member Functions

 __construct ($location, $name, $type)
 Create a new cache object.
 
 load ()
 Retrieve the data saved to the cache.
 
 mtime ()
 Retrieve the last modified time for the cache.
 
 save ($data)
 Save data to the cache.
 
 touch ()
 Set the last modified time to the current time.
 
 unlink ()
 Remove the cache.
 

Public Attributes

string const TYPE_FEED = 'spc'
 Feed cache type.
 
string const TYPE_IMAGE = 'spi'
 Image cache type.
 

Detailed Description

Base for cache objects.

Classes to be used with {

See also
SimplePie\Cache\register()} are expected to implement this interface.

@subpackage Caching

Deprecated
since SimplePie 1.8.0, use "Psr::SimpleCache::CacheInterface" instead

Constructor & Destructor Documentation

◆ __construct()

Base::__construct ( $location,
$name,
$type )

Create a new cache object.

Parameters
string$locationLocation string (from SimplePie\$cache_location)
string$nameUnique ID for the cache
Base\TYPE_FEED | Base\TYPE_IMAGE$typeEither TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data

Member Function Documentation

◆ load()

Base::load ( )

Retrieve the data saved to the cache.

Return values
arrayData for SimplePie\$data

◆ mtime()

Base::mtime ( )

Retrieve the last modified time for the cache.

Return values
intTimestamp

◆ save()

Base::save ( $data)

Save data to the cache.

Parameters
array | SimplePie\SimplePie$dataData to store in the cache. If passed a SimplePie object, only cache the $data property
Return values
boolSuccessfulness

◆ touch()

Base::touch ( )

Set the last modified time to the current time.

Return values
boolSuccess status

◆ unlink()

Base::unlink ( )

Remove the cache.

Return values
boolSuccess status

The documentation for this interface was generated from the following file: