X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl-cms.git;a=blobdiff_plain;f=admin_pages.php;h=9c7f56aa224e9b3d22ed410ff71e7a6f2405a122;hp=f7124449501f7892e0cd9eb50ce8022c4c867536;hb=40e5acacf037bc97c69e25aeae2bfbf14f77c7ec;hpb=6693ff479afca87acf937d7435121f9d7906e1c5 diff --git a/admin_pages.php b/admin_pages.php index f712444..9c7f56a 100644 --- a/admin_pages.php +++ b/admin_pages.php @@ -5,9 +5,6 @@ define('ADMIN_PAGES_DB_FIELDS', 'title,filename,navbar,nav_title,content,description,keywords'); -require_once(INC_WFPL . 'format.php'); -require_once(INC_WFPL . 'email.php'); - function format_cms_filename($str) { $str = format_filename($str); $str = str_replace('.', '_', $str); @@ -31,10 +28,7 @@ function admin_pages_get_fields() { function admin_pages_main() { - if(!logged_in_as_admin()) { - $_REQUEST['url'] = this_url(); - return 'admin_login'; - } + session_auth_must('edit_page'); $id = _REQUEST_cut('edit_id'); if($id) { @@ -78,19 +72,47 @@ function admin_pages_main_delete($id) { return './admin_pages'; } +# get all images from admin_images (for cms) function admin_pages_get_images() { - $images = db_get_assocs('cms_images', 'image,name,caption,sizes', 'order by name, caption, image'); - $id = 0; - foreach($images as &$image) { - $image['id'] = '' . $id; - $id += 1; + $out = []; + $rows = db_get_assocs('cms_images', 'image,name,caption,sizes', 'order by name, caption, image'); + if ($rows) { + $id = 0; + foreach($rows as &$row) { + $parts = explode(' ', $row['image'] . ' ', 7); + $out[] = [ + 'id' => '' . $id, + 'thumb' => $parts[3], + 'image' => $parts[0], + 'image_width' => (int)$parts[1], + 'image_height' => (int)$parts[2], + 'sizes' => $row['sizes'], + 'name' => $row['name'], + 'caption' => $row['caption'] + ]; + $id += 1; + } unset($row); } - return $images; + return $out; } function admin_pages_main_listing() { - $listing_rows = db_get_assocs('cms_pages', 'id,filename,coalesce(nullif(nav_title,\'\'), title) as title', 'order by concat(nav_title,title)'); - tem_set('listings', $listing_rows); + $data = array(); + $desc = ''; + $sort = _REQUEST_cut('sort'); + if ($sort && substr($sort, 0, 1) === '-') { + $sort = substr($sort, 1); + $desc = ' DESC '; + } else { + $data["sorting-by-$sort"] = '-'; + } + $legal_sorts = explode(',', ADMIN_PAGES_DB_FIELDS); + if (!$sort || !in_array($sort, $legal_sorts)) { + $sort = 'filename'; + } + + $data['rows'] = db_get_assocs('cms_pages', 'id,coalesce(nullif(nav_title,\'\'), title) as title,filename', "order by $sort $desc limit 1000"); + tem_set('listing', $data); } function admin_pages_main_form($id = false) { @@ -149,7 +171,7 @@ function admin_pages_main_form($id = false) { $data = array('filename' => format_cms_filename($_REQUEST['new_filename'])); } - tem_set('wfpl_images', admin_pages_get_images()); + tem_set('wfpl_images_json', json_encode(admin_pages_get_images())); tem_set('form', $data); tem_set('$head'); # wysiwyg init goes in }