Yaf_Action_Abstract::execute

(Yaf >=1.0.0)

Yaf_Action_Abstract::executeAction entry point

Açıklama

abstractpublicYaf_Action_Abstract::execute(mixed...$args): mixed

user should always define this method for a action, this is the entry point of an action. Yaf_Action_Abstract::execute() may have agruments.

Bilginize:

The value retrived from the request is not safe. you should do some filtering work before you use it.

Bağımsız Değişkenler

args

Dönen Değerler

Örnekler

Örnek 1 Yaf_Action_Abstract::execute()example

<?php

class ProductController extends Yaf_Controller_Abstract {
protected
$actions = array(
"index" => "actions/Index.php",
);
}
?>

Örnek 2 Yaf_Action_Abstract::execute()example

<?php

class ListAction extends Yaf_Action_Abstract {
public function
execute ($name, $id) {
assert($name == $this->getRequest()->getParam("name"));
assert($id == $this->getRequest()->getParam("id"));
}
}
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

 bool(true) bool(true)

Ayrıca Bakınız

To Top