Current File : //opt/RZphp73/includes/Net/MPD/Admin.php |
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
/**
* Music Player Daemon API
*
* PHP Version 5
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*
*
*
* API for the administrative portion of Music Player Daemon commands
*
* Used for maintaining and controlling various administrative tasks
* of the MPD software.
*
* @category Networking
* @package Net_MPD
* @author Graham Christensen <graham.christensen@itrebal.com>
* @copyright 2006 Graham Christensen
* @license http://www.opensource.org/licenses/mit-license.php MIT License
* @version CVS: $ID:$
*/
class Net_MPD_Admin extends Net_MPD_Common
{
/**
* List available audio outputs
*
* @return array or int on failure
*/
public function getOutputs()
{
return $this->runCommand('outputs');
}
/**
* Disables an audio output
*
* @param $id int output Id to disable
* @return bool
*/
public function disableOutput($id)
{
if ($this->runCommand('disableoutput', $id) == array()) {
return true;
}
return false;
}
/**
* Enables an audio output
*
* @param $id int Id to enable
* @return bool
*/
public function enableOutput($id)
{
if ($this->runCommand('enableoutput', $id) == array()) {
return true;
}
return false;
}
/**
* Kills the MPD server in a safe way, saving state if possible
*
* @return bool
*/
public function kill()
{
$r = $this->runCommand('kill');
if ($r) {
@$this->disconnect();
}
return true;
}
/**
* Updates the music database
*
* @param $path string path which to search for music, optional
* @return bool
*/
public function updateDatabase($path = '')
{
$this->runCommand('update', $path);
return true;
}
}
?>