Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-09-03 23:38:09 +0400
committermatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-09-03 23:38:09 +0400
commitc42ecf1bdc453c84ca04731d0693e6e18a27cd43 (patch)
tree244b4d7a655f82dfc33415f98be5335b08e18e5a /plugins/ExamplePlugin
parent4fa4a6487fe5e34996ca907c2d16e184e259c155 (diff)
DataTable ajax rendering, 30% done
Diffstat (limited to 'plugins/ExamplePlugin')
-rw-r--r--plugins/ExamplePlugin/Controller.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/ExamplePlugin/Controller.php b/plugins/ExamplePlugin/Controller.php
new file mode 100644
index 0000000000..131f3767d8
--- /dev/null
+++ b/plugins/ExamplePlugin/Controller.php
@@ -0,0 +1,16 @@
+<?php
+
+class Piwik_ExamplePlugin_Controller extends Piwik_Controller
+{
+ function getDefaultAction()
+ {
+ return 'homepage';
+ }
+
+ function homepage()
+ {
+ // invoke view
+ // render view
+ // do stuff...
+ }
+}