1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
<?php
/**
* Selection class
* A photo can be "selected" to be used in another part of Zoph,
* for example to be set as a coverphoto or to define related photos
*
* This file is part of Zoph.
*
* Zoph 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 2 of the License, or
* (at your option) any later version.
*
* Zoph 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.
* You should have received a copy of the GNU General Public License
* along with Zoph; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @author Jeroen Roos
* @package Zoph
*/
use template\block;
/**
* Selection class
* A photo can be "selected" to be used in another part of Zoph,
* for example to be set as a coverphoto or to define related photos
*
* @author Jeroen Roos
* @package Zoph
*/
class selection {
/** @var array Photos in the selection */
private $photos=array();
/** @var array The links that need to be displayed with each photo */
private $links=array();
/** @var photo|Organizer the currently displayed object */
private $obj = null;
/**
* Create a new selection object
* @param array $_SESSION should be passed here
* @param array The links that need to be displayed with each photo
* This array MUST include a ["return"] that will
* be the url to which the user is redirected back
* afterwards.
*/
public function __construct($session, $links, zophTable $current = null) {
if (!isset($session["selected_photo"]) || sizeof($session["selected_photo"])===0) {
throw new photoNoSelectionException("No photos selected");
}
$this->links=$links;
$this->obj=$current;
foreach ($session["selected_photo"] as $photo_id) {
$photo=new photo($photo_id);
$photo->lookup();
$this->photos[]=$photo;
}
if (sizeof($this->photos) === 0) {
throw new photoNoSelectionException("No photos selected");
}
}
/**
* Display the selection div
*/
public function __toString() {
$links=$this->links;
$return=$links["return"];
unset($links["return"]);
$photos=array();
foreach ($this->photos as $photo) {
$actionlinks=array();
if (!($this->obj instanceof photo && ($this->obj->getId() == $photo->getId()))) {
foreach ($links as $title => $link) {
$actionlinks[$title] = $link . $photo->getId() . "&" . $return;
}
}
$actionlinks["x"] = "photo.php?_action=deselect&photo_id=" . $photo->getId() . "&" . $return;
$tplActionlinks=new block("actionlinks",array(
"actionlinks" => $actionlinks
));
$photos[]=array(
"actionlinks" => $tplActionlinks,
"photo" => $photo
);
}
$tpl=new block("selection", array(
"count" => count($this->photos),
"photos" => $photos
));
return (string) $tpl;
}
}
|