1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- class ImageResultsProvider {
- private $con;
- public function __construct($con) {
- $this->con = $con;
- }
- public function getNumResults($term) {
- $query = $this->con->prepare("SELECT COUNT(*) as total
- FROM images
- WHERE (title LIKE :term
- OR alt LIKE :term)
- AND broken=0");
- $searchTerm = "%". $term . "%";
- $query->bindParam(":term", $searchTerm);
- $query->execute();
- $row = $query->fetch(PDO::FETCH_ASSOC);
- return $row["total"];
- }
- public function getResultsHtml($page, $pageSize, $term) {
- $fromLimit = ($page - 1) * $pageSize;
- $query = $this->con->prepare("SELECT *
- FROM images
- WHERE (title LIKE :term
- OR alt LIKE :term)
- AND broken=0
- ORDER BY clicks DESC
- LIMIT :fromLimit, :pageSize");
- $searchTerm = "%". $term . "%";
- $query->bindParam(":term", $searchTerm);
- $query->bindParam(":fromLimit", $fromLimit, PDO::PARAM_INT);
- $query->bindParam(":pageSize", $pageSize, PDO::PARAM_INT);
- $query->execute();
- $resultsHtml = "<div class='imageResults'>";
- $count = 0;
- while($row = $query->fetch(PDO::FETCH_ASSOC)) {
- $count++;
- $id = $row["id"];
- $imageUrl = $row["imageUrl"];
- $siteUrl = $row["siteUrl"];
- $title = $row["title"];
- $alt = $row["alt"];
- if($title) {
- $displayText = $title;
- }
- else if($alt) {
- $displayText = $alt;
- }
- else {
- $displayText = $imageUrl;
- }
-
- $resultsHtml .= "<div class='gridItem image$count'>
- <a href='$imageUrl' data-fancybox data-caption='$displayText'
- data-siteurl='$siteUrl'>
-
- <script>
- $(document).ready(function() {
- loadImage(\"$imageUrl\", \"image$count\");
- });
- </script>
- <span class='details'>$displayText</span>
- </a>
- </div>";
- }
- $resultsHtml .= "</div>";
- return $resultsHtml;
- }
- }
- ?>
|