1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49:
<?php
namespace Contentstack\Stack\ContentType;
use Contentstack\Stack\ContentType\Entry\Entry;
use Contentstack\Stack\ContentType\Query\Query;
require_once __DIR__.'/entry.php';
require_once __DIR__.'/query.php';
class ContentType {
var $uid = '';
var $stack = '';
public function __construct($uid = '', $stack = '') {
$this->uid = $uid;
$this->stack = $stack;
$this->type = 'contentType';
}
public function Entry($entry_uid = '') {
return new Entry($entry_uid, $this);
}
public function Query() {
return new Query($this, $this->type);
}
}