You are here

GalleryAssistPager.php in Gallery Assist 7

File

libs/classes/GalleryAssistPager.php
View source
<?php

class GalleryAssistPager {
  public function __construct($node) {

    #global $_DB, $_CONFIG;;
    $this->ids = $node->ga_items_ids;
    $this->conf = $node->ga_conf[$node->type];
  }
  public function getPager() {
    return 'here come the pager';
  }

}

Classes

Namesort descending Description
GalleryAssistPager