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: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392:
<?php
if (!defined('NEWS_POSITION_NORMAL')) {
define('NEWS_POSITION_NORMAL', 0);
define('NEWS_POSITION_STICKY', 1);
define('NEWS_POSITION_STICK_TO_TOP', 9);
}
class ZenpageNews extends ZenpageItems {
public $manage_rights = MANAGE_ALL_NEWS_RIGHTS;
public $manage_some_rights = ZENPAGE_NEWS_RIGHTS;
public $view_rights = ALL_NEWS_RIGHTS;
public $categories = NULL;
public $index = NULL;
protected $is_public = null;
function __construct($titlelink, $allowCreate = NULL) {
if (is_array($titlelink)) {
$titlelink = $titlelink['titlelink'];
}
$new = $this->instantiate('news', array('titlelink' => $titlelink), 'titlelink', true, empty($titlelink), $allowCreate);
$this->exists = $this->loaded;
}
function getCategories() {
if (is_null($this->categories)) {
$this->categories = query_full_array("SELECT * FROM " . prefix('news_categories') . " as cat," . prefix('news2cat') . " as newscat WHERE newscat.cat_id = cat.id AND newscat.news_id = " . $this->getID() . " ORDER BY cat.titlelink", false, 'title');
if (!$this->categories) {
$this->categories = array();
}
}
return $this->categories;
}
function setCategories($categories) {
$result = query('DELETE FROM ' . prefix('news2cat') . ' WHERE `news_id`=' . $this->getID());
$result = query_full_array("SELECT * FROM " . prefix('news_categories') . " ORDER BY titlelink");
foreach ($result as $cat) {
if (in_array($cat['titlelink'], $categories)) {
query("INSERT INTO " . prefix('news2cat') . " (cat_id, news_id) VALUES ('" . $cat['id'] . "', '" . $this->getID() . "')");
}
}
}
function getSticky() {
return $this->get('sticky');
}
function setSticky($v) {
$this->set('sticky', $v);
}
function getTruncation() {
return $this->get('truncation');
}
function setTruncation($v) {
$this->set('truncation', $v);
}
function copy($newtitle) {
$newID = $newtitle;
$id = parent::copy(array('titlelink' => $newID));
if (!$id) {
$newID = $newtitle . ':' . seoFriendly(date('Y-m-d_H-i-s'));
$id = parent::copy(array('titlelink' => $newID));
}
if ($id) {
$newobj = new ZenpageNews($newID);
$newobj->setTitle($newtitle);
$newobj->setTags($this->getTags());
$newobj->setShow(0);
$newobj->setDateTime(date('Y-m-d H:i:s'));
$newobj->save();
$categories = array();
foreach ($this->getCategories() as $cat) {
$categories[] = $cat['cat_id'];
}
$result = query_full_array("SELECT * FROM " . prefix('news_categories') . " ORDER BY titlelink");
foreach ($result as $cat) {
if (in_array($cat['id'], $categories)) {
query("INSERT INTO " . prefix('news2cat') . " (cat_id, news_id) VALUES ('" . $cat['id'] . "', '" . $id . "')");
}
}
return $newobj;
}
return false;
}
function remove() {
if ($success = parent::remove()) {
if ($this->id) {
$success = query("DELETE FROM " . prefix('obj_to_tag') . "WHERE `type`='news' AND `objectid`=" . $this->getID());
$success = $success && query("DELETE FROM " . prefix('news2cat') . " WHERE news_id = " . $this->getID());
$success = $success && query("DELETE FROM " . prefix('comments') . " WHERE ownerid = " . $this->getID() . ' AND type="news"');
}
}
return $success;
}
function inProtectedCategory($only = false) {
$categories = $this->getCategories();
if (!empty($categories)) {
foreach ($categories as $cat) {
$catobj = new ZenpageCategory($cat['titlelink']);
$password = $catobj->getPassword();
if (!empty($password)) {
if (!$only)
return true;
} else {
if ($only)
return false;
}
}
return $only;
}
return false;
}
function isProtected() {
return $this->inProtectedCategory(true);
}
function isPublic() {
if (is_null($this->is_public)) {
if(!$this->isPublished()) {
return $this->is_public = false;
}
$categories = $this->getCategories();
$catcheck = true;
if (count($categories) > 0) {
foreach ($categories as $cat) {
$catobj = new ZenpageCategory($cat);
if (!$catobj->isPublic()) {
$catcheck = $catcheck && false;
}
}
return $this->is_public = $catcheck;
}
return $this->is_public = true;
} else {
return $this->is_public;
}
}
function categoryIsVisible() {
if (zp_loggedin(ALL_NEWS_RIGHTS))
return true;
return $this->isPublic();
}
function checkforGuest(&$hint = NULL, &$show = NULL) {
if (!parent::checkForGuest()) {
return false;
}
$categories = $this->getCategories();
if (empty($categories)) {
return 'zp_public_access';
} else {
$access = array();
foreach ($categories as $cat) {
$catobj = new ZenpageCategory($cat['titlelink']);
$guestaccess = $catobj->checkforGuest($hint, $show);
if($guestaccess) {
$access[] = 1;
} else {
$access[] = 0;
}
}
if(in_array(0, $access)) {
return false;
} else {
return 'zp_public_access';
}
}
return false;
}
function isMyItem($action) {
global $_zp_current_admin_obj;
if (parent::isMyItem($action)) {
return true;
}
if (zp_loggedin($action)) {
if (GALLERY_SECURITY != 'public' && $this->isPublic() && $action == LIST_RIGHTS) {
return LIST_RIGHTS;
}
if ($_zp_current_admin_obj->getUser() == $this->getAuthor()) {
return true;
}
if ($action == LIST_RIGHTS && !$this->isProtected() && $this->isPublic() || zp_loggedin(ALL_NEWS_RIGHTS)) {
return true;
}
if(!$this->getCategories()) {
return false;
}
$mycategories = $_zp_current_admin_obj->getObjects('news');
if (!empty($mycategories)) {
foreach ($this->getCategories() as $category) {
$cat = new ZenpageCategory($category['titlelink']);
if ($cat->isMyItem(ZENPAGE_NEWS_RIGHTS)) {
return true;
}
}
}
}
return false;
}
function inNewsCategory($catlink) {
if (!empty($catlink)) {
$categories = $this->getCategories();
$count = 0;
foreach ($categories as $cat) {
if ($catlink == $cat['titlelink']) {
$count = 1;
break;
}
}
return $count == 1;
} else {
return false;
}
}
function inSubNewsCategoryOf($catlink) {
if (!empty($catlink)) {
$categories = $this->getCategories();
$count = 0;
foreach ($categories as $cat) {
$catobj = new ZenpageCategory($cat['titlelink']);
$parentid = $catobj->getParentID();
$parentcats = $catobj->getParents();
foreach ($parentcats as $parentcat) {
if ($catlink == $parentcat) {
$count = 1;
break;
}
}
}
return $count == 1;
} else {
return false;
}
}
function getLink() {
return zp_apply_filter('getLink', rewrite_path(_NEWS_ . '/' . $this->getTitlelink() . '/', '/index.php?p=news&title=' . $this->getTitlelink()), $this, NULL);
}
function getIndex() {
global $_zp_zenpage, $_zp_current_zenpage_news;
if ($this->index == NULL) {
$articles = $_zp_zenpage->getArticles(0, NULL, true);
for ($i = 0; $i < count($articles); $i++) {
$article = $articles[$i];
if ($this->getTitlelink() == $article['titlelink']) {
$this->index = $i;
break;
}
}
}
return $this->index;
}
function getPrevArticle() {
global $_zp_zenpage, $_zp_current_zenpage_news;
$index = $this->getIndex();
$article = $_zp_zenpage->getArticle($index - 1);
return $article;
}
function getNextArticle() {
global $_zp_zenpage, $_zp_current_zenpage_news;
$index = $this->getIndex();
$article = $_zp_zenpage->getArticle($index + 1);
return $article;
}
function getNewsLoopPage() {
$index = $this->getIndex();
return floor(($index / ZP_ARTICLES_PER_PAGE) + 1);
}
}
?>