1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-13 18:24:57 +02:00

Initial commit to new repo (carried over from: https://github.com/ryancramerdesign/ProcessWire/tree/devns)

This commit is contained in:
Ryan Cramer
2016-09-02 14:55:17 -04:00
parent cfae5fc6f3
commit bac5b0de5d
1691 changed files with 279091 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
<?php namespace ProcessWire;
/**
* ProcessWire Templates
*
* WireArray of Template instances as used by Templates class.
*
* ProcessWire 3.x, Copyright 2016 by Ryan Cramer
* https://processwire.com
*
*/
class TemplatesArray extends WireArray {
public function isValidItem($item) {
return $item instanceof Template;
}
public function isValidKey($key) {
return is_int($key) || ctype_digit($key);
}
public function getItemKey($item) {
return $item->id;
}
public function makeBlankItem() {
return $this->wire(new Template());
}
}