Framework list
Filter
MVC
minimal
library
routing
toolkit
ajax
shortlist
all
Submit
Add a new framework
.include-once.org
Filter
MVC
minimal
library
routing
toolkit
ajax
shortlist
all
Submit
Add a new framework
| prado | |
title![]() | PRADO |
description![]() | component-based and event-driven programming framework |
url![]() | http://www.pradosoft.com/ |
license![]() | BSDL |
version![]() | 3.1.7 |
release![]() | 2004 |
size![]() | 59960 |
language![]() | PHP |
documentation![]() | ☆☆☆ |
maturity![]() | stable |
development![]() | invite |
team![]() | group |
type![]() | MVC |
| prado | |
coding.paradigm![]() | object-structured |
coding.names![]() | pfxdHungarianNouns |
coding.autoloader![]() | ![]() |
coding.debug![]() | E_STRICT |
abstraction.level![]() | ![]() |
coding.unit_tests![]() | ![]() |
| prado | |
modules.mvc![]() | ![]() |
modules.db![]() | ![]() |
modules.orm![]() | ![]() |
modules.crud![]() | ![]() |
modules.multidb![]() | ![]() |
modules.filedb![]() | ![]() |
modules.auth![]() | ![]() |
modules.cache![]() | ![]() |
modules.validate![]() | ![]() |
modules.filter![]() | ![]() |
modules.i18n![]() | ![]() |
modules.session![]() | ![]() |
modules.log![]() | ![]() |
modules.sandbox![]() | ![]() |
modules.benchmark![]() | ![]() |
modules.form![]() | ![]() |
modules.ajax![]() | ![]() |
modules.edp![]() | ![]() |
modules.plugins![]() | ![]() |
modules.dist![]() | ![]() |
modules.cli![]() | ![]() |
modules.scaffolding![]() | ![]() |
modules.rest![]() | ![]() |
| prado | |
compatible.php![]() | php5 |
standard.html![]() | xhtml-strict |
compatible.app![]() | |
compatible.forks![]() | |
compatible.sql![]() | |
compatible.css![]() | |
compatible.plugin![]() | |
| prado | |
security.db![]() | parameterized |
security.inputsanitization![]() | |
security.outputescaping![]() | |
security.auth![]() | hmac |
security.admin![]() | |
| prado | |
mvc.type![]() | Passive-MVC |
| prado | |
routing.type![]() | front controller |
routing.rewriterules![]() | ![]() |
routing.dispatch![]() | programmatic rule set (:part) |
routing.responder![]() | class-method |
| prado | |
model.type![]() | database |
model.db![]() | ActiveRecord |
model.backend![]() | PRADO |
| prado | |
view.type![]() | Template |
view.backend![]() | ASP/xmlns |
view.collect![]() | |
view.output![]() | interpolate |
| prado | |
controller.type![]() | |
controller.helper![]() | |
| prado | |
configuration.type![]() | |
configuration.store![]() | files |
configuration.format![]() | XML |
| prado | |
ajax.type![]() | toolkit |
ajax.library![]() | Prototype |
| prado | |
util.upload![]() | ![]() |
util.session![]() | ![]() |
util.cookie![]() | ![]() |
util.pagination![]() | ![]() |
util.http![]() | ![]() |
util.url![]() | ![]() |
util.mime![]() | ![]() |
util.permission![]() | ![]() |
util.debug![]() | ![]() |
util.localization![]() | method |
util.form![]() | objects |
| prado | |
http.negotiation![]() | ![]() |
http.conditional![]() | ![]() |
util.xml![]() | ![]() |
util.rss![]() | ![]() |
util.zip![]() | ![]() |
util.mail![]() | ![]() |
util.gzip![]() | ![]() |
util.captcha![]() | ![]() |
util.dom![]() | ![]() |
util.markup![]() | ![]() |
util.pdf![]() | ![]() |
util.images![]() | ![]() |
util.wysiwyg![]() | ![]() |
util.webdav![]() | ![]() |
| prado | |
util.sitemap![]() | ![]() |
util.pingback![]() | ![]() |
util.rpc![]() | ![]() |
service.twitter![]() | ![]() |
service.google![]() | ![]() |
service.facebook![]() | ![]() |
service.openid![]() | ![]() |
service.cardspace![]() | ![]() |
service.oauth![]() | ![]() |
service.opensearch![]() | ![]() |
service.geo![]() | ![]() |
service.paypal![]() | ![]() |
| prado | |
forum_from_framework![]() | ![]() |
popular_apps![]() | ![]() |
big_websites![]() | ![]() |
You can also update this entry, if you have more information.
PRADO Sample Application:
index.php - entry script of the PRADO application. This file is required by all PRADO applications and is the only script file that is directly accessible by end-users. Content in index.php mainly consists of the following three lines,
require_once('path/to/prado.php'); // include the prado script$application
=new TApplication; // create a PRADO application instance$application
->run(); // run the application
Home.page - template for the default page returned when users do not explicitly specify the page requested. A template specifies the presentational layout of components. In this example, we use two components, TForm and TButton, which correspond to the <form> and <input> HTML tags, respectively. The template contains the following content,
<html>
<body>
<com:TForm>
<com:TButton Text='Click me' OnClick='buttonClicked' />
</com:TForm>
</body>
</html>
Home.php - page class for the Home page. It mainly contains the method responding to the OnClick event of the button.
class Home extends TPage
{
public function buttonClicked($sender,$param)
{
// $sender refers to the button component $sender
->Text='Hello World!';
}
}
Add a Comment