This repository has been archived by the owner on Jun 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added search capability for artists and tracks to the artist section.
- Loading branch information
Showing
3 changed files
with
139 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<?php | ||
|
||
/** | ||
* Plex Library Track | ||
* | ||
* @category php-plex | ||
* @package Plex_Server | ||
* @subpackage Plex_Server_Library | ||
* @author <[email protected]> Nick Bartkowiak | ||
* @copyright (c) 2012 Nick Bartkowiak | ||
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU Public Licence (GPLv3) | ||
* @version 0.0.1 | ||
* | ||
* This file is part of php-plex. | ||
* | ||
* php-plex is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* php-plex is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
*/ | ||
|
||
/** | ||
* Represents a Plex track. | ||
* | ||
* @category php-plex | ||
* @package Plex_Server | ||
* @subpackage Plex_Server_Library | ||
* @author <[email protected]> Nick Bartkowiak | ||
* @copyright (c) 2012 Nick Bartkowiak | ||
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU Public Licence (GPLv3) | ||
* @version 0.0.1 | ||
*/ | ||
class Plex_Server_Library_Item_Track | ||
extends Plex_Server_Library_ItemChildAbstract | ||
{ | ||
/** | ||
* Original title of the artist. | ||
* @var string | ||
*/ | ||
private $originalTitle; | ||
|
||
/** | ||
* Sets an array of attributes, if they exist, to the corresponding class | ||
* member. | ||
* | ||
* @param array $attribute An array of item attributes as passed back by the | ||
* Plex HTTP API. | ||
* | ||
* @uses Plex_Server_Library_ItemAbstract::setAttributes() | ||
* | ||
* @return void | ||
*/ | ||
public function setAttributes($attribute) | ||
{ | ||
parent::setAttributes($attribute); | ||
|
||
if (isset($attribute['originalTitle'])) { | ||
$this->setOriginalTitle($attribute['originalTitle']); | ||
} | ||
} | ||
|
||
/** | ||
* Returns the original title. | ||
* | ||
* @uses Plex_Server_Library_Item_Track::$originalTitle | ||
* | ||
* @return string The original title. | ||
*/ | ||
public function getOriginalTitle() | ||
{ | ||
return $this->originalTitle; | ||
} | ||
/ | ||
/** | ||
* Sets the original title. | ||
* | ||
* @param string $originalTitle The original title. | ||
* | ||
* @uses Plex_Server_Library_Item_Track::$originalTitle | ||
* | ||
* @return void | ||
*/ | ||
public function setOriginalTitle($originalTitle) | ||
{ | ||
$this->originalTitle = $originalTitle; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters