yellow/system/extensions/stockholm.php

27 lines
1.1 KiB
PHP

<?php
// Stockholm extension, https://github.com/datenstrom/yellow-extensions/tree/master/themes/stockholm
// Copyright (c) 2013-2019 Datenstrom, https://datenstrom.se
// This file may be used and distributed under the terms of the public license.
class YellowStockholm {
const VERSION = "0.8.6";
const TYPE = "theme";
public $yellow; //access to API
// Handle initialisation
public function onLoad($yellow) {
$this->yellow = $yellow;
}
// Handle update
public function onUpdate($action) {
$fileName = $this->yellow->system->get("coreSettingDir").$this->yellow->system->get("coreSystemFile");
if ($action=="install") {
$this->yellow->system->save($fileName, array("theme" => "stockholm"));
} elseif ($action=="uninstall" && $this->yellow->system->get("theme")=="stockholm") {
$theme = reset(array_diff($this->yellow->extensions->getExtensions("theme"), array("stockholm")));
$this->yellow->system->save($fileName, array("theme" => $theme));
}
}
}