123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace fectfurnilife\administer;
- use Yii;
- /**
- * 应用安装类
- * 您可以在这里添加类变量,在配置中的值可以注入进来。
- */
- class Uninstall implements \fecshop\services\extension\UninstallInterface
- {
-
- /**
- * @return mixed|void
- */
- public function run()
- {
- //$sql = "
- // DROP TABLE IF EXISTS `rf_addon_article1`;
- // DROP TABLE IF EXISTS `rf_addon_article_adv1`;
- //";
- // 执行sql, 创建表结构的时候,这个函数会返回0,因此不能以返回值作为return
- //Yii::$app->getDb()->createCommand($sql)->execute();
- if (!$this->removeImageFile()) {
- return false;
- }
-
- return true;
- }
-
- public function removeImageFile()
- {
- return Yii::$service->extension->administer->removeThemeFile();
- }
- }
|