-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ExtensionInstallerInterface refs #2500
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
/** | ||
* Copyright 2014 Zikula Foundation | ||
* | ||
* This work is contributed to the Zikula Foundation under one or more | ||
* Contributor Agreements and licensed to You under the following license: | ||
* | ||
* @license GNU/LGPLv3 (or at your option, any later version). | ||
* @package Zikula | ||
* | ||
* Please see the NOTICE file distributed with this source code for further | ||
* information regarding copyright and licensing. | ||
*/ | ||
|
||
namespace Zikula\Core; | ||
|
||
use Zikula\Core\AbstractBundle; | ||
|
||
/** | ||
* Interface ExtensionInstallerInterface | ||
* @package Zikula\Core | ||
*/ | ||
interface ExtensionInstallerInterface | ||
{ | ||
public function setBundle(AbstractBundle $bundle); | ||
public function install(); | ||
public function upgrade($oldVersion); | ||
public function uninstall(); | ||
} |