Lines Matching refs:ts
11 public static function getPageAccess($tablename, $pid, $ts = 0) argument
13 $schema = new Schema($tablename, $ts);
14 return new AccessTablePage($schema, $pid, $ts, 0);
26 * @param int $ts
31 public static function bySchema(Schema $schema, $pid, $ts = 0, $rid = 0) argument
33 if (self::isTypePage($pid, $ts, $rid)) {
34 return new AccessTablePage($schema, $pid, $ts, $rid);
36 return new AccessTableGlobal($schema, $pid, $ts, $rid);
42 * @param int $ts
47 public static function byTableName($tablename, $pid, $ts = 0, $rid = 0) argument
49 $schema = new Schema($tablename, $ts);
50 …return self::bySchema($schema, $pid, $ts); // becuse we have a static call here we can not rely on…