====== getTasks ======
{#JAPI Joomla.Framework Application JController::getTasks #}
Gets the available tasks in the controller.
===== Syntax =====
array getTasks ()
===== Examples =====
$controller = new JController();
print_r( $controller->getTasks() );
might produce
Array ( [0] => display )
----
~~DISCUSSION~~