2009-10-18 21:05:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class ComicPressStoryline {
|
|
|
|
var $_structure;
|
|
|
|
|
2009-10-18 21:59:40 +00:00
|
|
|
/**
|
|
|
|
* Create a searchable structure from a node list.
|
|
|
|
* @param array $structure The structure to process.
|
|
|
|
* @return boolean True if the structure was valid.
|
|
|
|
*/
|
2009-10-18 21:05:10 +00:00
|
|
|
function create_structure($structure) {
|
|
|
|
$new_structure = array();
|
|
|
|
$parent = null;
|
2009-10-18 21:59:40 +00:00
|
|
|
$all_leaves = array();
|
2009-10-18 21:05:10 +00:00
|
|
|
|
|
|
|
$adjacents_by_parent = array();
|
|
|
|
|
|
|
|
if (is_array($structure)) {
|
|
|
|
$is_valid = true;
|
|
|
|
foreach ($structure as $branch) {
|
|
|
|
if (is_string($branch)) {
|
|
|
|
$parts = explode('/', $branch);
|
|
|
|
$valid = false;
|
|
|
|
if (count($parts) > 1) {
|
|
|
|
if ($parts[0] == '0') { $valid = true; }
|
|
|
|
}
|
|
|
|
if (!$valid) {
|
|
|
|
$is_valid = false; break;
|
|
|
|
} else {
|
|
|
|
$data = array();
|
|
|
|
$leaf = end($parts);
|
2009-10-18 21:59:40 +00:00
|
|
|
$all_leaves[] = $leaf;
|
2009-10-18 21:05:10 +00:00
|
|
|
|
|
|
|
if (count($parts) > 2) {
|
|
|
|
$parent = $parts[count($parts) - 2];
|
|
|
|
|
|
|
|
if (!isset($adjacents_by_parent[$parent])) {
|
|
|
|
$adjacents_by_parent[$parent] = array();
|
|
|
|
}
|
|
|
|
$adjacents_by_parent[$parent][] = $leaf;
|
|
|
|
|
|
|
|
$data['parent'] = $parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
$new_structure[$leaf] = $data;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$is_valid = false; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($is_valid) {
|
|
|
|
foreach ($adjacents_by_parent as $parent => $adjacents) {
|
|
|
|
for ($i = 0; $i < count($adjacents); ++$i) {
|
|
|
|
foreach (array('previous' => -1, 'next' => 1) as $type => $dir) {
|
|
|
|
if (isset($adjacents[$i + $dir])) {
|
|
|
|
$new_structure[$adjacents[$i]][$type] = $adjacents[$i + $dir];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-10-18 21:59:40 +00:00
|
|
|
|
|
|
|
for ($i = 0; $i < count($all_leaves); ++$i) {
|
|
|
|
foreach (array('prior' => -1, 'upcoming' => 1) as $type => $dir) {
|
|
|
|
if (isset($all_leaves[$i + $dir])) {
|
|
|
|
$new_structure[$all_leaves[$i]][$type] = $all_leaves[$i + $dir];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-10-18 21:05:10 +00:00
|
|
|
|
|
|
|
$this->_structure = $new_structure;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return is_array($this->_structure);
|
|
|
|
}
|
2009-10-18 21:59:40 +00:00
|
|
|
|
|
|
|
function _get_field($field, $id) {
|
|
|
|
if (isset($this->_structure)) {
|
|
|
|
if (isset($this->_structure[$id])) {
|
|
|
|
if (isset($this->_structure[$id][$field])) {
|
|
|
|
return $this->_structure[$id][$field];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function parent($id) { return $this->_get_field('parent', $id); }
|
|
|
|
function previous($id) { return $this->_get_field('previous', $id); }
|
|
|
|
function next($id) { return $this->_get_field('next', $id); }
|
|
|
|
function upcoming($id) { return $this->_get_field('upcoming', $id); }
|
|
|
|
function prior($id) { return $this->_get_field('prior', $id); }
|
|
|
|
function valid($id) {
|
|
|
|
if (isset($this->_structure[$id])) {
|
|
|
|
return array_keys($this->_structure[$id]);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-20 00:56:32 +00:00
|
|
|
function get_valid_nav($post_id) {
|
2009-10-18 21:59:40 +00:00
|
|
|
$data = false;
|
|
|
|
|
|
|
|
foreach (wp_get_post_categories($post_id) as $category) {
|
|
|
|
if ($result = $this->valid($category)) {
|
|
|
|
if ($data) { return false; }
|
|
|
|
|
|
|
|
$data = $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $data;
|
|
|
|
}
|
2009-10-18 21:05:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|