7161656063
git-svn-id: file:///home/shish/svn/shimmie2/trunk@1 7f39781d-f577-437e-ae19-be835c7a54ca
14 lines
267 B
PHP
14 lines
267 B
PHP
<?php
|
|
/*
|
|
* ConfigSaveEvent:
|
|
* Sent when the setup screen's 'set' button has been
|
|
* activated; new config options are in $_POST
|
|
*/
|
|
class ConfigSaveEvent extends Event {
|
|
var $config;
|
|
|
|
public function ConfigSaveEvent($config) {
|
|
$this->config = $config;
|
|
}
|
|
}
|
|
?>
|