Skip to content
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.

Commit

Permalink
Adding in the photo section stub.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbart committed Dec 17, 2012
1 parent 94bf7e2 commit c256ee8
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions Server/Library/Section/Photo.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<?php

/**
* Plex Server Library Photo Section
*
* @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.
*/

/**
* Class that represents a Plex library photo section and makes available the
* retrieval of library photo items.
*
* @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_Section_Photo
extends Plex_Server_Library_SectionAbstract
{
// STUB! Need to implement this. This has been added to stop the library's
// getSection() method from crashing if it detects a photo section and
// attempts instantiation. This is on the back burner and scheduled to be
// put together later after the main library sections and client methods are
// complete.
}

0 comments on commit c256ee8

Please sign in to comment.