CC-2873: Use PHP constants

- done
This commit is contained in:
james 2011-09-25 17:29:57 -04:00
parent b8c2c5dfb1
commit e1fe877ac6
3 changed files with 6 additions and 2 deletions

View file

@ -35,3 +35,7 @@ define('UI_MDATA_VALUE_FORMAT_STREAM', 'live stream');
// Session Keys // Session Keys
define('UI_PLAYLIST_SESSNAME', 'PLAYLIST'); define('UI_PLAYLIST_SESSNAME', 'PLAYLIST');
// Soundcloud contants
define('SC_PROGRESS', -2);
define('SC_ERROR', -2);

View file

@ -413,7 +413,7 @@ class ApiController extends Zend_Controller_Action
$this->setSoundCloudErrorCode($code); $this->setSoundCloudErrorCode($code);
$this->setSoundCloudErrorMsg($msg); $this->setSoundCloudErrorMsg($msg);
// setting sc id to -3 which indicates error // setting sc id to -3 which indicates error
$this->setSoundCloudFileId(-3); $this->setSoundCloudFileId(SC_ERROR);
if(!in_array($code, array(0, 100))) { if(!in_array($code, array(0, 100))) {
break; break;
} }

View file

@ -60,6 +60,6 @@ if(count($argv) != 2){
$id = $argv[1]; $id = $argv[1];
$file = Application_Model_StoredFile::Recall($id); $file = Application_Model_StoredFile::Recall($id);
// set id with -2 which is indicator for processing // set id with -2 which is indicator for processing
$file->setSoundCloudFileId(-2); $file->setSoundCloudFileId(SC_PROGRESS);
$file->uploadToSoundCloud(); $file->uploadToSoundCloud();