\FireGento_MageMonitoring_Model_Widget_CacheStat
class FireGento_MageMonitoring_Model_Widget_CacheStat
- Author: FireGento Team <team@firegento.com>
Synopsis
interface FireGento_MageMonitoring_Model_Widget_CacheStat
extends FireGento_MageMonitoring_Model_Widget
{
- // methods
- public int getMemoryMax()
- public int getMemoryUsed()
- public int getCacheHits()
- public int getCacheMisses()
- public bool flushCache()
- // Inherited methods from FireGento_MageMonitoring_Model_Widget
- public string getId()
- public string getConfigId()
- public bool isActive()
- public string getName()
- public string getVersion()
- public string getSupportedMagentoVersions()
- public bool displayCollapsed()
- public int getDisplayPrio()
- public array getOutput()
- public array|false initConfig()
- public array|false getConfig()
- public array|false loadConfig()
- public bool saveConfig()
- public bool deleteConfig()
Hierarchy
Methods
public
- flushCache() — Whooosh!
- getCacheHits() — Returns cache hit count or false if not implemented.
- getCacheMisses() — Returns cache miss count or false if not implemented.
- getMemoryMax() — Returns maximum cache size in bytes or false if not implemented.
- getMemoryUsed() — Returns used cache size in bytes or false if not implemented.
Inherited from FireGento_MageMonitoring_Model_Widget
public
- deleteConfig() — Deletes the widget config via desired persistance layer. Never called if getConfig() returns false.
- displayCollapsed() — Returns true if widget should start collapsed, speeds up loading times as the widget won't render it's content on page load.
- getConfig() — Returns current config data of this widget.
- getConfigId() — Returns widget config key in database.
- getDisplayPrio() — Returns display prio of this widget.
- getId() — Returns class name that must be compatible with magento autoloader.
- getName() — Returns widget name.
- getOutput() — Used to render the widget, returns array of classes that have a ->toHtml() method.
- getSupportedMagentoVersions() — Returns magento versions supported by this widget.
- getVersion() — Returns version string.
- initConfig() — Returns array with default config data for this widget or false if not implemented.
- isActive() — Returns true if this widget is active.
- loadConfig() — Loads and returns the widget config via desired persistance layer. Never called if getConfig() returns false.
- saveConfig() — Saves the widget config via desired persistance layer. Never called if getConfig() returns false.