13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Service |
16 * @package Zend_Service |
17 * @subpackage SlideShare |
17 * @subpackage SlideShare |
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @version $Id: SlideShow.php 20096 2010-01-06 02:05:09Z bkarwin $ |
20 * @version $Id: SlideShow.php 25283 2013-03-09 10:07:13Z frosch $ |
21 */ |
21 */ |
22 |
22 |
23 |
23 |
24 /** |
24 /** |
25 * The Zend_Service_SlideShare_SlideShow class represents a slide show on the |
25 * The Zend_Service_SlideShare_SlideShow class represents a slide show on the |
26 * slideshare.net servers. |
26 * slideshare.net servers. |
27 * |
27 * |
28 * @category Zend |
28 * @category Zend |
29 * @package Zend_Service |
29 * @package Zend_Service |
30 * @subpackage SlideShare |
30 * @subpackage SlideShare |
31 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
31 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
32 * @license http://framework.zend.com/license/new-bsd New BSD License |
32 * @license http://framework.zend.com/license/new-bsd New BSD License |
33 */ |
33 */ |
34 class Zend_Service_SlideShare_SlideShow |
34 class Zend_Service_SlideShare_SlideShow |
35 { |
35 { |
36 |
|
37 /** |
36 /** |
38 * Status constant mapping for web service |
37 * Status constant mapping for web service |
39 * |
38 * |
40 */ |
39 */ |
41 const STATUS_QUEUED = 0; |
40 const STATUS_QUEUED = 0; |
326 } |
325 } |
327 |
326 |
328 /** |
327 /** |
329 * Sets the description for the Slide show |
328 * Sets the description for the Slide show |
330 * |
329 * |
331 * @param strign $desc The description of the slide show |
330 * @param string $desc The description of the slide show |
332 * @return Zend_Service_SlideShare_SlideShow |
331 * @return Zend_Service_SlideShare_SlideShow |
333 */ |
332 */ |
334 public function setDescription($desc) |
333 public function setDescription($desc) |
335 { |
334 { |
336 $this->_description = (string)$desc; |
335 $this->_description = (string)$desc; |