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:
<?php
/**
* Base class from which all Zenpage classes derive
* @author Stephen Billard (sbillard), Malte Müller (acrylian)
* @package plugins
* @subpackage zenpage
*/
class ZenpageRoot extends ThemeObject {
protected $sorttype;
protected $sortdirection;
protected $sortSticky = true;
/**
* Returns the perma link status (only used on admin)
*
* @return string
*/
function getPermalink() {
return $this->get("permalink");
}
/* * '
* sets the permalink
*/
function setPermalink($v) {
$this->set('permalink', $v);
}
/**
* Returns the titlelink
*
* @return string
*/
function getTitlelink() {
return $this->get("titlelink");
}
/**
* sets the title link
* @param $v
*/
function setTitlelink($v) {
$this->set("titlelink", $v);
}
}