(PECL yaf >=1.0.0)
Yaf_Action_Abstract::execute — Execute the action
Yaf_Action_Abstract::execute() may have agruments.
Hinweis:
The value retrived from the request is not safe. you should do some filtering work before you use it.
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
Diese Funktion hat keine Parameter.
Beispiel #1 Yaf_Action_Abstract::execute()example
<?php
/**
* A controller example
*/
class ProductController extends Yaf_Controller_Abstract {
protected $actions = array(
"index" => "actions/Index.php",
);
}
?>
Beispiel #2 Yaf_Action_Abstract::execute()example
<?php
/**
* ListAction
*/
class ListAction extends Yaf_Action_Abstract {
public function execute ($name, $id) {
assert($name == $this->getRequest()->getParam("name"));
assert($id == $this->getRequest()->getParam("id"));
}
}
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
/** * Now assuming we are using the Yaf_Route_Static route * for request: http://yourdomain/product/list/name/yaf/id/22 * will result: */ bool(true) bool(true)