Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / source / AbstractPlugin.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <title>The source code</title>
6   <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
7   <script type="text/javascript" src="../prettify/prettify.js"></script>
8   <style type="text/css">
9     .highlight { display: block; background-color: #ddd; }
10   </style>
11   <script type="text/javascript">
12     function highlight() {
13       document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
14     }
15   </script>
16 </head>
17 <body onload="prettyPrint(); highlight();">
18   <pre class="prettyprint lang-js"><span id='Ext-AbstractPlugin'>/**
19 </span> * @class Ext.AbstractPlugin
20  * @extends Object
21  *
22  * Plugins are injected 
23  */
24 Ext.define('Ext.AbstractPlugin', {
25     disabled: false,
26     
27     constructor: function(config) {
28         //&lt;debug&gt;
29         if (!config.cmp &amp;&amp; Ext.global.console) {
30             Ext.global.console.warn(&quot;Attempted to attach a plugin &quot;);
31         }
32         //&lt;/debug&gt;
33         Ext.apply(this, config);
34     },
35     
36     getCmp: function() {
37         return this.cmp;
38     },
39
40 <span id='Ext-AbstractPlugin-method-init'>    /**
41 </span>     * The init method is invoked after initComponent has been run for the
42      * component which we are injecting the plugin into.
43      * @method
44      */
45     init: Ext.emptyFn,
46
47 <span id='Ext-AbstractPlugin-method-destroy'>    /**
48 </span>     * The destroy method is invoked by the owning Component at the time the Component is being destroyed.
49      * Use this method to clean up an resources.
50      * @method
51      */
52     destroy: Ext.emptyFn,
53
54 <span id='Ext-AbstractPlugin-method-enable'>    /**
55 </span>     * Enable the plugin and set the disabled flag to false.
56      */
57     enable: function() {
58         this.disabled = false;
59     },
60
61 <span id='Ext-AbstractPlugin-method-disable'>    /**
62 </span>     * Disable the plugin and set the disabled flag to true.
63      */
64     disable: function() {
65         this.disabled = true;
66     }
67 });
68 </pre>
69 </body>
70 </html>