interface - dummy page "Stream Setting" page for the test - StreamSetting model is added - set owner and group as 'pypo' for liquidsoap.cfg - pypofech handle 'update_stream_setting' command
14 lines
No EOL
306 B
PHP
14 lines
No EOL
306 B
PHP
<?php
|
|
class Application_Model_StreamSetting {
|
|
public function __construct(){
|
|
|
|
}
|
|
public static function getStreamSetting(){
|
|
global $CC_DBC;
|
|
$sql = "SELECT *"
|
|
." FROM cc_stream_setting";
|
|
|
|
$rows = $CC_DBC->getAll($sql);
|
|
return $rows;
|
|
}
|
|
} |