post = $post; } } /** * TODO normalize the attachments * @return unknown_type */ function get_attachments() { $comicpress = ComicPress::get_instance(); $attachments = array(); foreach ($comicpress->backends as $backend) { $attachments = array_merge($attachments, call_user_func(array($backend, 'generate_from_post'), $this->post)); } return $attachments; } /** * Normalize the ordering of attachments in this post. * If images have beed added or removed, intelligently update the metadata. */ function normalize_ordering() { $attachments = $this->get_attachments(); if (is_array($attachments)) { $new_ordering = array(); $current_ordering = get_post_meta($this->post->ID, 'image-ordering', true); if (!is_array($current_ordering)) { $current_ordering = array(); } $all_current_ids = array(); foreach ($current_ordering as $key => $properties) { $all_current_ids[$key] = true; if (isset($properties['children'])) { foreach (array_values($properties['children']) as $kid) { $all_current_ids[$kid] = true; } } } $all_current_ids = array_keys($all_current_ids); $attachment_ids = array(); foreach ($attachments as $attachment) { $attachment_ids[] = $attachment->id; } $new_attachments = array_diff($attachment_ids, $all_current_ids); $missing_attachments = array_diff($all_current_ids, $attachment_ids); foreach ($new_attachments as $attachment_id) { $current_ordering[$attachment_id] = array('enabled' => true); } foreach ($missing_attachments as $attachment_id) { if (isset($current_ordering[$attachment_id])) { unset($current_ordering[$attachment_id]); } else { foreach ($current_ordering as $key => $properties) { if (isset($properties['children'])) { foreach ($properties['children'] as $type => $kid) { if (!in_array($kid, $attachment_ids)) { unset($properties['children'][$type]); } } if (empty($properties['children'])) { unset($current_ordering[$key]['children']); } else { $current_ordering[$key] = $properties; } } } } } update_post_meta($this->post->ID, 'image-ordering', $current_ordering); return $current_ordering; } return false; } // @codeCoverageIgnoreStart /** * Sort the remaining comic images by file date. * @param object $a * @param object $b * @return int */ function sort_remaining_comic_images($a, $b) { $a_date = isset($a->post_date) ? $a->post_date : 0; $b_date = isset($b->post_date) ? $b->post_date : 0; return $a_date - $b_date; } // @codeCoverageIgnoreEnd function find_parents() { $parents = array(); $post_categories = wp_get_post_categories($this->post->ID); if (count($post_categories) == 1) { do { $category_parent = 0; $category = get_category(end($post_categories)); if (!empty($category)) { $category_parent = $category->parent; if ($category_parent != 0) { $post_categories[] = $category_parent; } } } while ($category_parent != 0); foreach ($post_categories as $category_id) { $category = get_category($category_id); $parents[$category_id] = $category->slug; } } return $parents; } function update_post_media_data($info) { $ordering = array(); foreach ($info as $image) { if (isset($image['id'])) { $data = array( 'enabled' => false ); foreach ($image as $field => $value) { switch ($field) { case 'enabled': $data['enabled'] = true; break; case 'children': $any_entered = false; foreach ($value as $type => $attached_id) { if (!empty($attached_id)) { $any_entred = true; break; } } if ($any_entered) { $data['children'] = $value; } break; } } $ordering[$image['id']] = $data; } } update_post_meta($this->post->ID, 'image-ordering', $ordering); return $ordering; } } ?>