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
| wact | |
title![]() | WACT |
description![]() | a modular framework for creating web applications |
url![]() | http://www.phpwact.org/ |
license![]() | GNU LGPL |
version![]() | SVN 982 |
release![]() | 2004 |
size![]() | 8800 |
language![]() | PHP |
documentation![]() | ☆ |
maturity![]() | mature |
development![]() | invite |
team![]() | group |
type![]() | MVC |
| wact | |
coding.paradigm![]() | object-structured |
coding.names![]() | pfxdHungarianNouns |
coding.autoloader![]() | ![]() |
coding.debug![]() | E_STRICT |
abstraction.level![]() | ![]() |
coding.unit_tests![]() | ![]() |
| wact | |
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![]() | ![]() |
| wact | |
compatible.php![]() | php5 |
standard.html![]() | xhtml |
compatible.app![]() | |
compatible.forks![]() | |
compatible.sql![]() | |
compatible.css![]() | |
compatible.plugin![]() | |
| wact | |
security.db![]() | |
security.inputsanitization![]() | |
security.outputescaping![]() | |
security.auth![]() | |
security.admin![]() | |
| wact | |
mvc.type![]() | Passive-MVC |
| wact | |
routing.type![]() | front controller |
routing.rewriterules![]() | ![]() |
routing.dispatch![]() | implicit mapping (URL paths) |
routing.responder![]() | class-method |
| wact | |
model.type![]() | |
model.db![]() | |
model.backend![]() | |
| wact | |
view.type![]() | Container |
view.backend![]() | XML |
view.collect![]() | setters |
view.output![]() | xmlns |
| wact | |
controller.type![]() | processing |
controller.helper![]() | event listener |
| wact | |
configuration.type![]() | registry |
configuration.store![]() | |
configuration.format![]() | ini |
| wact | |
ajax.type![]() | |
ajax.library![]() | |
| wact | |
util.upload![]() | ![]() |
util.session![]() | ![]() |
util.cookie![]() | ![]() |
util.pagination![]() | ![]() |
util.http![]() | ![]() |
util.url![]() | ![]() |
util.mime![]() | ![]() |
util.permission![]() | ![]() |
util.debug![]() | ![]() |
util.localization![]() | - |
util.form![]() | objects |
| wact | |
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![]() | ![]() |
| wact | |
util.sitemap![]() | ![]() |
util.pingback![]() | ![]() |
util.rpc![]() | ![]() |
service.twitter![]() | ![]() |
service.google![]() | ![]() |
service.facebook![]() | ![]() |
service.openid![]() | ![]() |
service.cardspace![]() | ![]() |
service.oauth![]() | ![]() |
service.opensearch![]() | ![]() |
service.geo![]() | ![]() |
service.paypal![]() | ![]() |
| wact | |
forum_from_framework![]() | ![]() |
popular_apps![]() | ![]() |
big_websites![]() | ![]() |
You can also update this entry, if you have more information.
WACT is a higher level toolkit, and doesn't provide the multitude of small gizmos common in other frameworks. The SVN version even lacks the DBAL module.
CONTROLLER
<?php
require_once 'wact/controller/controller.inc.php';
require_once 'wact/template/loader.inc.php';
class CaseConverter extends WactController {
function setup() {
$loader = new WactTemplateLoader();
$this->setView($loader->load('index.tpl.html'));
}
}
$front = new CaseConverter();
$front->start();
?>
TEMPLATE
<form wact:id='converter' method='POST'>
<label for='text'>Enter text to convert:</label><br />
<textarea name='text' id='text' rows='5' cols='70'></textarea><br />
SUBVIEW
$loader = new WactTemplateLoader();
$view = $loader->load('index.tpl.html');
$view->getChild('text')->setAttribute('rows', 10);
$this->setView($view);
Add a Comment