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: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543:
<?php
$plugin_is_filter = 5 | FEATURE_PLUGIN;
$plugin_description = gettext("Multiple <em>Theme</em> layouts");
$plugin_author = "Malte Müller (acrylian), Stephen Billard (sbillard)";
$plugin_category = gettext('Misc');
$option_interface = 'multipleLayoutOptions';
zp_register_filter('load_theme_script', 'getLayout');
zp_register_filter('remove_object', 'deleteLayoutSelection');
zp_register_filter('copy_object', 'copyLayoutSelection');
if (getOption('multiple_layouts_albums')) {
zp_register_filter('edit_album_utilities', 'layoutSelector_album');
zp_register_filter('save_album_utilities_data', 'saveZenphotoLayoutSelection');
}
if (getOption('multiple_layouts_images')) {
zp_register_filter('edit_image_utilities', 'layoutSelector');
zp_register_filter('save_image_utilities_data', 'saveZenphotoLayoutSelection');
}
if (extensionEnabled('zenpage')) {
if (getOption('multiple_layouts_pages')) {
zp_register_filter('publish_page_utilities', 'layoutSelector');
zp_register_filter('new_page', 'saveLayoutSelection');
zp_register_filter('update_page', 'saveLayoutSelection');
}
if (getOption('multiple_layouts_news')) {
zp_register_filter('publish_article_utilities', 'layoutSelector');
zp_register_filter('new_article', 'saveLayoutSelection');
zp_register_filter('update_article', 'saveLayoutSelection');
}
if (getOption('multiple_layouts_news_categories')) {
zp_register_filter('publish_category_utilities', 'layoutSelector');
zp_register_filter('new_category', 'saveLayoutSelection');
zp_register_filter('update_category', 'saveLayoutSelection');
}
}
class multipleLayoutOptions {
function __construct() {
setOptionDefault('multiple_layouts_images', 0);
setOptionDefault('multiple_layouts_albums', 0);
setOptionDefault('multiple_layouts_pages', 1);
setOptionDefault('multiple_layouts_news', 1);
setOptionDefault('multiple_layouts_news_categories', 1);
}
function getOptionsSupported() {
$checkboxes = array(gettext('Albums') => 'multiple_layouts_albums', gettext('Images') => 'multiple_layouts_images');
if (extensionEnabled('zenpage')) {
$checkboxes = array_merge($checkboxes, array(gettext('Pages') => 'multiple_layouts_pages', gettext('News') => 'multiple_layouts_news', gettext('News categories') => 'multiple_layouts_news_categories'));
}
$options = array(gettext('Enable multiple layouts for') => array('key' => 'multiple_layouts_allowed', 'type' => OPTION_TYPE_CHECKBOX_ARRAY,
'checkboxes' => $checkboxes,
'desc' => '')
);
return $options;
}
function handleOption($option, $currentValue) {
}
}
function getSelectedLayout($obj, $type) {
if ($obj && $obj->exists) {
$assignedlayout = query_single_row("SELECT * FROM " . prefix('plugin_storage') . ' WHERE `aux` = ' . $obj->getID() . ' AND `type` = "' . $type . '"');
if (!$assignedlayout || empty($assignedlayout['data'])) {
$assignedlayout = checkParentLayouts($obj, $type);
}
return $assignedlayout;
}
return false;
}
function checkParentLayouts($obj, $type) {
$parents = array();
switch ($type) {
case 'multiple_layouts_images':
$type = 'multiple_layouts_albums_images';
$obj = $obj->getAlbum();
array_unshift($parents, $obj);
case 'multiple_layouts_albums':
case 'multiple_layouts_albums_images':
while (!is_null($obj = $obj->getParent())) {
array_unshift($parents, $obj);
}
if (count($parents) > 0) {
$parents = array_reverse($parents);
foreach ($parents as $parentobj) {
$parentlayouts = query_single_row('SELECT * FROM ' . prefix('plugin_storage') . ' WHERE `aux`=' . $parentobj->getID() . ' AND `type` = "' . $type . '"');
if ($parentlayouts && $parentlayouts['data']) {
return $parentlayouts;
}
}
}
break;
case 'multiple_layouts_pages':
case 'multiple_layouts_news_categories':
$parents = $obj->getParents();
if (count($parents) > 0) {
$parents = array_reverse($parents);
foreach ($parents as $parent) {
if ($type === 'multiple_layouts_pages') {
$parentobj = new ZenpagePage($parent);
} else {
$parentobj = new ZenpageCategory($parent);
}
$parentlayouts = query_single_row('SELECT * FROM ' . prefix('plugin_storage') . ' WHERE `aux`=' . $parentobj->getID() . ' AND `type` = "' . $type . '"');
if ($parentlayouts && $parentlayouts['data']) {
return $parentlayouts;
}
}
}
break;
}
return false;
}
function checkLayoutUseForImages($obj) {
$albumimagelayout = query_single_row("SELECT id, `data` FROM " . prefix('plugin_storage') . ' WHERE `aux` = ' . $obj->getID() . ' AND `type` = "multiple_layouts_albums_images"');
if ($albumimagelayout) {
return $albumimagelayout;
} else {
$parents = array();
while (!is_null($obj = $obj->getParent())) {
array_unshift($parents, $obj);
}
if (count($parents) > 0) {
$parents = array_reverse($parents);
foreach ($parents as $parent) {
$parentimagelayouts = query_full_array('SELECT id, `data` FROM ' . prefix('plugin_storage') . ' WHERE `aux`=' . $parent->getID() . ' AND `type` = "multiple_layouts_albums_images"');
if ($parentimagelayouts && $parentimagelayouts['data']) {
return $parentimagelayouts;
}
}
}
}
return false;
}
function layoutSelector($html, $obj, $prefix = '') {
$type = 'multiple_layouts_' . $obj->table;
if (getOption($type)) {
$html .= getLayoutSelector($obj, $type, '<hr /><p>' . gettext('Select layout:') . '</p>', $prefix);
}
return $html;
}
function layoutSelector_album($html, $obj, $prefix) {
if (getOption('multiple_layouts_albums')) {
$albumhtml = getLayoutSelector($obj, 'multiple_layouts_albums', '<hr /><p>' . gettext('Select album layout:') . '</p>', $prefix);
$imagehtml = getLayoutSelector($obj, 'multiple_layouts_albums_images', '<p>' . gettext('Select default album image layout:') . '</p>', $prefix, true);
if (!$obj->isDynamic() && strpos($imagehtml, '<p class="no_extra">') === false) {
$imagehtml .= '<br /><input type="checkbox" id="layout_selector_resetimagelayouts" name="layout_selector_resetimagelayouts" /><label for="layout_selector_resetimagelayouts">' . gettext('Reset individual image layouts') . '</label>';
}
return $html . $albumhtml . $imagehtml;
}
return $html;
}
function getLayoutSelector($obj, $type, $text, $prefix = '', $secondary = false) {
global $_zp_gallery;
$selectdefault = '';
$selected = '';
$files = array();
$list = array();
$getlayout = '';
$table = $obj->table;
$path = SERVERPATH . '/' . THEMEFOLDER . '/' . $_zp_gallery->getCurrentTheme() . '/';
$defaultlayout = '';
$defaulttext = gettext('default');
switch ($table) {
case 'albums':
if ($secondary) {
$filesmask = 'image';
} else {
$filesmask = 'album';
};
$child = $obj->getParentID();
$defaulttext = gettext('inherited');
break;
case 'images':
$filesmask = 'image';
$album = $obj->album;
$child = $album->getID();
$defaulttext = gettext('album default');
break;
case 'pages':
$filesmask = 'pages';
$child = $obj->getParentID();
$defaulttext = gettext('inherited');
break;
case 'news':
$child = false;
$categories = $obj->getCategories();
if ($categories) {
foreach ($categories as $cat) {
$cat = new ZenpageCategory($cat['titlelink']);
$getlayout = getSelectedLayout($cat, 'multiple_layouts_news_categories');
if ($getlayout && $getlayout['data']) {
$defaulttext = gettext('inherited');
$defaultlayout = gettext('from category');
break;
}
}
}
$filesmask = 'news';
break;
case 'news_categories':
$child = $obj->getParentID();
$defaulttext = gettext('inherited');
$filesmask = 'news';
break;
}
$curdir = getcwd();
chdir($path);
$files = safe_glob($filesmask . '*.php');
chdir($curdir);
if ($child) {
$defaultlayout = checkParentLayouts($obj, $type);
if($defaultlayout) {
$defaultlayout = $defaultlayout['data'];
}
}
if ($defaultlayout) {
$defaultlayout = stripSuffix($defaultlayout);
} else {
$defaultlayout = $filesmask;
}
if ($obj->transient) {
$getlayout = false;
} else {
$getlayout = query_single_row("SELECT * FROM " . prefix('plugin_storage') . ' WHERE `aux` = ' . $obj->getID() . ' AND `type` = "' . $type . '"');
}
if (!$child && ($key = array_search($filesmask . '.php', $files)) !== false) {
unset($files[$key]);
}
foreach ($files as $file) {
$file = filesystemToInternal($file);
$list[stripSuffix($file)] = $file;
}
ksort($list);
$html = $text;
if (count($files) != 0) {
$html .= '<select id="' . $type . $prefix . '" name="' . $prefix . $type . '">' . "\n";
if (is_array($getlayout)) {
$selectedlayout = $getlayout['data'];
} else {
$selectedlayout = '';
}
$html .= '<option value=""' . ($selectedlayout == '' ? ' selected="selected"' : '') . ' style="background-color:LightGray" >*' . $defaulttext . '* (' . $defaultlayout . ')</option>' . "\n";
foreach ($list as $display => $file) {
$html .= '<option value="' . html_encode($file) . '"' . ($selectedlayout == $file ? ' selected="selected"' : '') . '>' . $display . '</option>' . "\n";
}
$html .= '</select>' . "\n";
} else {
$html = '<p class="no_extra">' . sprintf(gettext('No extra <em>%s</em> theme pages available'), $filesmask) . '</p>' . "\n";
}
return $html;
}
function getLayout($path) {
global $_zp_gallery, $_zp_gallery_page, $_zp_current_image, $_zp_current_album, $_zp_current_zenpage_page, $_zp_current_zenpage_news, $_zp_current_category, $_zp_current_search;
if ($path) {
$themepath = THEMEFOLDER . '/' . $_zp_gallery->getCurrentTheme() . '/';
$getlayout = false;
switch ($_zp_gallery_page) {
case 'album.php':
if (getOption('multiple_layouts_albums')) {
$getlayout = getSelectedLayout($_zp_current_album, 'multiple_layouts_albums');
}
break;
case 'image.php':
if (getOption('multiple_layouts_images')) {
$currentalbumname = $_zp_current_album->name;
if (in_context(ZP_SEARCH_LINKED) && !in_context(ZP_ALBUM_LINKED)) {
if (!$album = $_zp_current_search->getDynamicAlbum()) {
$album = $_zp_current_album;
}
} else {
$getlayout = getSelectedLayout($_zp_current_image, 'multiple_layouts_images');
$album = $_zp_current_album;
}
if ($album && !$getlayout) {
$getlayout = checkLayoutUseForImages($album);
}
}
break;
case 'pages.php':
if (getOption('multiple_layouts_pages')) {
$getlayout = getSelectedLayout($_zp_current_zenpage_page, 'multiple_layouts_pages');
}
break;
case 'news.php':
if (getOption('multiple_layouts_news_categories') && in_context(ZP_ZENPAGE_NEWS_CATEGORY)) {
$getlayout = getSelectedLayout($_zp_current_category, 'multiple_layouts_news_categories');
} elseif (getOption('multiple_layouts_news') && in_context(ZP_ZENPAGE_SINGLE)) {
$getlayout = getSelectedLayout($_zp_current_zenpage_news, 'multiple_layouts_news');
}
break;
}
if ($getlayout && $getlayout['data'] && file_exists(internalToFilesystem(SERVERPATH . '/' . $themepath . $getlayout['data']))) {
return $themepath . $getlayout['data'];
}
}
return $path;
}
function saveLayoutSelection($message, $obj) {
$selectedlayout = '';
$type = 'multiple_layouts_' . $obj->table;
if (isset($_POST[$type])) {
$selectedlayout = sanitize($_POST[$type]);
$table = $obj->table;
$exists = query_single_row("SELECT * FROM " . prefix('plugin_storage') . ' WHERE `aux` = ' . $obj->getID() . ' AND `type` = "' . $type . '"');
if ($selectedlayout) {
if ($exists) {
$query = query('UPDATE ' . prefix('plugin_storage') . ' SET `aux`=' . $obj->getID() . ', `data`=' . db_quote($selectedlayout) . ' WHERE `id`=' . $exists['id']);
} else {
$query = query('INSERT INTO ' . prefix('plugin_storage') . ' (type,aux,data) VALUES (' . db_quote($type) . ', ' . $obj->getID() . ', ' . db_quote($selectedlayout) . ')');
}
} else {
if ($exists) {
$query = query('DELETE FROM ' . prefix('plugin_storage') . ' WHERE `id`=' . $exists['id']);
} else {
$query = true;
}
}
if (!$query) {
$message .= '<p class="errorbox">' . sprintf(gettext('Query failure: %s'), db_error()) . '</p>';
}
}
return $message;
}
function saveZenphotoLayoutSelection($obj, $prefix) {
$cssIDappend = '';
$selectedlayout = '';
$titlelink = '';
$table = $obj->table;
$type = 'multiple_layouts_' . $table;
if (isset($_POST[$prefix . $type])) {
$selectedlayout = sanitize($_POST[$prefix . $type]);
$exists = query_single_row("SELECT * FROM " . prefix('plugin_storage') . ' WHERE `aux` = ' . $obj->getID() . ' AND `type` = "' . $type . '"');
if ($selectedlayout) {
if ($exists) {
$query = query('UPDATE ' . prefix('plugin_storage') . ' SET `aux`=' . $obj->getID() . ', `data`=' . db_quote($selectedlayout) . ' WHERE `id`=' . $exists['id']);
} else {
$query = query('INSERT INTO ' . prefix('plugin_storage') . ' (type,aux,data) VALUES ("' . $type . '", ' . $obj->getID() . ', ' . db_quote($selectedlayout) . ')');
}
} else {
if ($exists) {
$query = query('DELETE FROM ' . prefix('plugin_storage') . ' WHERE `id`=' . $exists['id']);
} else {
$query = true;
}
}
if ($table == 'albums') {
if (isset($_POST['layout_selector_resetimagelayouts'])) {
$result = query_full_array('SELECT `id` FROM ' . prefix('images') . ' WHERE `albumid`=' . $obj->getID());
if ($result) {
$imagelist = '';
foreach ($result as $row) {
$imagelist .= '`aux`=' . $row['id'] . ' OR ';
}
$query = query($sql = 'DELETE FROM ' . prefix('plugin_storage') . ' WHERE `type`="multiple_layouts_images" AND (' . substr($imagelist, 0, -4) . ')', false);
}
}
$exists = query_single_row("SELECT * FROM " . prefix('plugin_storage') . ' WHERE `aux` = ' . $obj->getID() . ' AND `type` = "multiple_layouts_albums_images"');
$selectedlayout = isset($_POST[$prefix . 'multiple_layouts_albums_images']) ? sanitize($_POST[$prefix . 'multiple_layouts_albums_images']) : NULL;
if ($selectedlayout) {
if ($exists) {
$query = query('UPDATE ' . prefix('plugin_storage') . ' SET `aux`=' . $obj->getID() . ', `data`=' . db_quote($selectedlayout) . ' WHERE `id`=' . $exists['id']);
} else {
$query = query('INSERT INTO ' . prefix('plugin_storage') . ' (type,aux,data) VALUES ("multiple_layouts_albums_images", ' . $obj->getID() . ', ' . db_quote($selectedlayout) . ')');
}
} else {
if ($exists) {
$query = query('DELETE FROM ' . prefix('plugin_storage') . ' WHERE `id`=' . $exists['id']);
} else {
$query = true;
}
}
}
}
return $obj;
}
function deleteLayoutSelection($allow, $obj) {
$type = 'multiple_layouts_' . $obj->table;
if (getOption($type)) {
$query = query('DELETE FROM ' . prefix('plugin_storage') . ' WHERE `aux` = ' . $obj->getID() . ' AND type = "' . $type . '"', false);
if (isAlbumClass($obj)) {
$result = query_single_row('DELETE FROM ' . prefix('plugin_storage') . ' WHERE `aux` = ' . $obj->getID() . ' AND type = "multiple_layouts_albums_images"', false);
}
}
return $allow;
}
function copyLayoutSelection($newid, $obj) {
$type = 'multiple_layouts_' . $obj->table;
if (getOption($type)) {
$result = query_single_row('SELECT * FROM ' . prefix('plugin_storage') . ' WHERE `aux` = ' . $obj->getID() . ' AND type = "' . $type . '"', false);
if ($result) {
$query = query('INSERT INTO ' . prefix('plugin_storage') . ' (type,aux,data) VALUES ("' . $result['type'] . '", ' . $newid . ', ' . db_quote($result['data']) . ')');
}
if (isAlbumClass($obj)) {
$result = query_single_row('SELECT * FROM ' . prefix('plugin_storage') . ' WHERE `aux` = ' . $obj->getID() . ' AND type = "multiple_layouts_albums_images"', false);
if ($result) {
$query = query('INSERT INTO ' . prefix('plugin_storage') . ' (type,aux,data) VALUES ("multiple_layouts_albums_images", ' . $newid . ', ' . db_quote($result['data']) . ')');
}
}
}
return $newid;
}
?>