23 lines
411 B
PHP
23 lines
411 B
PHP
<?php
|
|
|
|
namespace PkgStore\ext_4b8213a1;
|
|
|
|
use XF\AddOn\AbstractSetup;
|
|
|
|
class Setup extends AbstractSetup
|
|
{
|
|
public function install(array $stepParams = [])
|
|
{
|
|
// TODO: Implement install() method.
|
|
}
|
|
|
|
public function upgrade(array $stepParams = [])
|
|
{
|
|
// TODO: Implement upgrade() method.
|
|
}
|
|
|
|
public function uninstall(array $stepParams = [])
|
|
{
|
|
// TODO: Implement uninstall() method.
|
|
}
|
|
}
|