phpMv -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
Loading...
Searching...
No Matches
AbstractSearchResult.php
Go to the documentation of this file.
1<?php
2
4
5abstract class AbstractSearchResult {
6
7 public function fromDatabaseObjects($objects, $function) {
8 if (isset($objects)) {
9 foreach ( $objects as $object ) {
10 $this->fromDatabaseObject($object, $function);
11 }
12 }
13 return $this;
14 }
15
16 abstract protected function fromDatabaseObject($object, $function);
17}