Файл: upload/module/music/include/service/song/process.class.php
Строк: 66
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Service
* @version $Id: browse.class.php 1558 2010-05-04 12:51:22Z Raymond_Benc $
*/
class Music_Service_Song_Process extends Phpfox_Service
{
/**
* Class constructor
*/
public function __construct()
{
$this->_sTable = Phpfox::getT('music_song');
}
public function setName($iSong, $sTitle, $bUpdateUrl = true, $bReturnNewTitle = false)
{
$iSong = (int)$iSong;
Phpfox::getService('ban')->checkAutomaticBan($sTitle);
$sTitle = Phpfox::getLib('parse.input')->clean($sTitle);
$aChange = array('title' => $sTitle);
if ($bUpdateUrl)
{
$aChange['title_url'] = Phpfox::getLib('parse.input')->prepareTitle('music', $sTitle, 'title_url', Phpfox::getUserId(), Phpfox::getT('music_song'));
}
$this->database()->update(Phpfox::getT('music_song'), $aChange, 'song_id = ' . $iSong);
if ($bReturnNewTitle)
{
return $aChange['title_url'];
}
return true;
}
/**
* If a call is made to an unknown method attempt to connect
* it to a specific plug-in with the same name thus allowing
* plug-in developers the ability to extend classes.
*
* @param string $sMethod is the name of the method
* @param array $aArguments is the array of arguments of being passed
*/
public function __call($sMethod, $aArguments)
{
/**
* Check if such a plug-in exists and if it does call it.
*/
if ($sPlugin = Phpfox_Plugin::get('music.service_process__call'))
{
return eval($sPlugin);
}
/**
* No method or plug-in found we must throw a error.
*/
Phpfox_Error::trigger('Call to undefined method ' . __CLASS__ . '::' . $sMethod . '()', E_USER_ERROR);
}
}
?>