Exception
2 years ago
Widgets
2 years ago
config
2 years ago
stylesheets
2 years ago
templates
2 years ago
vue
2 years ago
Controller.php
1 year ago
FormDatabaseSetup.php
1 year ago
FormDefaultSettings.php
1 year ago
FormFirstWebsiteSetup.php
1 year ago
FormSuperUser.php
1 year ago
Installation.php
2 years ago
Menu.php
2 years ago
Onboarding.php
2 years ago
ServerFilesGenerator.php
1 year ago
View.php
1 year ago
FormDefaultSettings.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Matomo - free/libre analytics platform |
| 5 | * |
| 6 | * @link https://matomo.org |
| 7 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 8 | */ |
| 9 | namespace Piwik\Plugins\Installation; |
| 10 | |
| 11 | use Piwik\QuickForm2; |
| 12 | class FormDefaultSettings extends QuickForm2 |
| 13 | { |
| 14 | public function __construct($id = 'defaultsettingsform', $method = 'post', $attributes = null, $trackSubmit = \false) |
| 15 | { |
| 16 | parent::__construct($id, $method, $attributes, $trackSubmit); |
| 17 | } |
| 18 | public function init() |
| 19 | { |
| 20 | } |
| 21 | } |
| 22 |