Copyright (c) 2004-2008 qadram software S.L. <support@qadram.com>
Checkout AUTHORS file for more information on the developers
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
CLASS NAME | DESCRIPTION |
| Application | A class to reference all the forms created on your application. |
| ScrollingControl | Base class for controls with scrolling area |
| CustomPage | Base class for Page component |
| DataModule | DataModule class, basically a non visible holder for direct Component descendants |
| Window | A class to encapsulate a window living on the browser |
| Page | A class to encapsulate a web page. |
| HiddenField | A component to generate an html hidden field. |
| Frameset | A class to encapsulate a frame set and generate frames. |
| Frame | A frame represents a view of a document embedded into a parent document |
ajaxDump (line 280)
This function is used by the internal Ajax system to get the code for a component and add it to the Ajax response, so it gets updated when the response is returned.
It relays on the dumpForAjax method that may be implemented by a component to specify which javascript code must be executed in order to update such component.
If no dumpForAjax method implementation exists, it tries to get the object code and split the javascript and html code to add it to the response, so it gets correctly processed.
ajaxProcess (line 323)
This function is used by the Page when UseAjax is true to process the ajax requests and fire the right events.
It also creates the response to update the browser according to the component updates.
VCLShutdown (line 58)
This function is automatically called by the PHP engine just before shutdown, and it's the right moment to serialize all components as no more user code is going to be executed.
This way, the status of all objects in the aplication is stored to be recovered later without user intervention.