a53680b7e682329e2ee415395770f1cd0db2ffa9
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\data\package\installation\plugin;
3 use wcf\data\AbstractDatabaseObjectAction;
4
5 /**
6 * Executes package installation plugin-related actions.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2011 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package com.woltlab.wcf
12 * @subpackage data.package.installation.plugin
13 * @category Community Framework
14 */
15 class PackageInstallationPluginAction extends AbstractDatabaseObjectAction {
16 /**
17 * @see AbstractDatabaseObjectAction::$className
18 */
19 protected $className = 'wcf\data\package\installation\plugin\PackageInstallationPluginEditor';
20 }