/**
  * Get and returns all images in the model
  * @return hash hash of all images
  * @static
  */
 public static function getAllImages()
 {
     $images = ImageModel::selectAll();
     return $images;
 }