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

Controller.php « modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8bf0087eff47300e22ace72742cf292b94fbb83e (plain)
1
2
3
4
5
6
7
8
9
<?php
abstract class Piwik_Controller
{
	function getDefaultAction()
	{
		return 'index';
	}
}
?>