SAAS-772: Send metadata to Tunein
This is pretty much working for scheduled metadata - just to need to test with a TuneIn account.
This commit is contained in:
parent
77241bb6fc
commit
cf24c141fd
10 changed files with 179 additions and 2 deletions
|
@ -1453,4 +1453,44 @@ class Application_Model_Preference
|
|||
{
|
||||
return self::getValue("provisioning_status");
|
||||
}
|
||||
|
||||
public static function setTuneinEnabled($value)
|
||||
{
|
||||
self::setValue("tunein_enabled", $value);
|
||||
}
|
||||
|
||||
public static function getTuneinEnabled()
|
||||
{
|
||||
return self::getValue("tunein_enabled");
|
||||
}
|
||||
|
||||
public static function setTuneinPartnerKey($value)
|
||||
{
|
||||
self::setValue("tunein_partner_key", $value);
|
||||
}
|
||||
|
||||
public static function getTuneinPartnerKey()
|
||||
{
|
||||
return self::getValue("tunein_partner_key");
|
||||
}
|
||||
|
||||
public static function setTuneinPartnerId($value)
|
||||
{
|
||||
self::setValue("tunein_partner_id", $value);
|
||||
}
|
||||
|
||||
public static function getTuneinPartnerId()
|
||||
{
|
||||
return self::getValue("tunein_partner_id");
|
||||
}
|
||||
|
||||
public static function setTuneinStationId($value)
|
||||
{
|
||||
self::setValue("tunein_station_id", $value);
|
||||
}
|
||||
|
||||
public static function getTuneinStationId()
|
||||
{
|
||||
return self::getValue("tunein_station_id");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue