Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / docs / source / AbstractPlugin.html
1 <!DOCTYPE html><html><head><title>Sencha Documentation Project</title><link rel="stylesheet" href="../reset.css" type="text/css"><link rel="stylesheet" href="../prettify.css" type="text/css"><link rel="stylesheet" href="../prettify_sa.css" type="text/css"><script type="text/javascript" src="../prettify.js"></script></head><body onload="prettyPrint()"><pre class="prettyprint"><pre><span id='Ext-AbstractPlugin'>/**
2 </span> * @class Ext.AbstractPlugin
3  * @extends Object
4  *
5  * Plugins are injected 
6  */
7 Ext.define('Ext.AbstractPlugin', {
8     disabled: false,
9     
10     constructor: function(config) {
11         //&lt;debug&gt;
12         if (!config.cmp &amp;&amp; Ext.global.console) {
13             Ext.global.console.warn(&quot;Attempted to attach a plugin &quot;);
14         }
15         //&lt;/debug&gt;
16         Ext.apply(this, config);
17     },
18     
19     getCmp: function() {
20         return this.cmp;
21     },
22
23 <span id='Ext-AbstractPlugin-property-init'>    /**
24 </span>     * The init method is invoked after initComponent has been run for the
25      * component which we are injecting the plugin into.
26      */
27     init: Ext.emptyFn,
28
29 <span id='Ext-AbstractPlugin-property-destroy'>    /**
30 </span>     * The destroy method is invoked by the owning Component at the time the Component is being destroyed.
31      * Use this method to clean up an resources.
32      */
33     destroy: Ext.emptyFn,
34
35 <span id='Ext-AbstractPlugin-method-enable'>    /**
36 </span>     * Enable the plugin and set the disabled flag to false.
37      */
38     enable: function() {
39         this.disabled = false;
40     },
41
42 <span id='Ext-AbstractPlugin-method-disable'>    /**
43 </span>     * Disable the plugin and set the disabled flag to true.
44      */
45     disable: function() {
46         this.disabled = true;
47     }
48 });
49 </pre></pre></body></html>