Пример #1
0
 /**
  * Gets the publisher of this track
  *
  * @param $id
  *
  * @return null
  */
 public function GetPublisher($id)
 {
     $result = $this->database->Where(["id" => $id]);
     if (empty($result) == true) {
         return null;
     }
     return CherryPick::GetColumn($result, 0, 'publisher');
 }