0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
b2evolution
/
3.3.1-5
/
standard
/
htdocs
/
inc
/
items
/
model
/
[
Home
]
File: _item.funcs.php
<?php /** * This file implements Post handling functions. * * This file is part of the evoCore framework - {@link http://evocore.net/} * See also {@link http://sourceforge.net/projects/evocms/}. * * @copyright (c)2003-2009 by Francois PLANQUE - {@link http://fplanque.net/} * Parts of this file are copyright (c)2004-2006 by Daniel HAHLER - {@link http://thequod.de/contact}. * * {@internal License choice * - If you have received this file as part of a package, please find the license.txt file in * the same folder or the closest folder above for complete license terms. * - If you have received this file individually (e-g: from http://evocms.cvs.sourceforge.net/) * then you must choose one of the following licenses before using the file: * - GNU General Public License 2 (GPL) - http://www.opensource.org/licenses/gpl-license.php * - Mozilla Public License 1.1 (MPL) - http://www.opensource.org/licenses/mozilla1.1.php * }} * * {@internal Open Source relicensing agreement: * Daniel HAHLER grants Francois PLANQUE the right to license * Daniel HAHLER's contributions to this file and the b2evolution project * under any OSI approved OSS license (http://www.opensource.org/licenses/). * }} * * @package evocore * * {@internal Below is a list of authors who have contributed to design/coding of this file: }} * @author cafelog (team) * @author blueyed: Daniel HAHLER. * @author fplanque: Francois PLANQUE. * @author tswicegood: Travis SWICEGOOD. * @author vegarg: Vegar BERG GULDAL. * * @version $Id: _item.funcs.php,v 1.56 2009/07/06 23:52:24 sam2kb Exp $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); /** * Prepare the MainList object for displaying skins. * * @param integer max # of posts on the page */ function init_MainList( $items_nb_limit ) { global $MainList; global $Blog; global $timestamp_min, $timestamp_max; global $preview; global $disp; global $postIDlist, $postIDarray; $MainList = new ItemList2( $Blog, $timestamp_min, $timestamp_max, $items_nb_limit ); // COPY (FUNC) if( ! $preview ) { if( $disp == 'page' ) { // Get pages: $MainList->set_default_filters( array( 'types' => '1000', // pages // 'types' => '1000,1500,1520,1530,1570', // pages and intros (intros should normally never be called) ) ); } // else: we are either in single or in posts mode // pre_dump( $MainList->default_filters ); $MainList->load_from_Request( false ); // pre_dump( $MainList->filters ); // echo '<br/>'.( $MainList->is_filtered() ? 'filtered' : 'NOT filtered' ); // $MainList->dump_active_filters(); // Run the query: $MainList->query(); // Old style globals for category.funcs: $postIDlist = $MainList->get_page_ID_list(); $postIDarray = $MainList->get_page_ID_array(); } else { // We want to preview a single post, we are going to fake a lot of things... $MainList->preview_from_request(); // Legacy for the category display $cat_array = array(); } param( 'more', 'integer', 0, true ); param( 'page', 'integer', 1, true ); // Post page to show param( 'c', 'integer', 0, true ); // Display comments? param( 'tb', 'integer', 0, true ); // Display trackbacks? param( 'pb', 'integer', 0, true ); // Display pingbacks? } /** * Return an Item if an Intro or a Featured item is available for display in current disp. * * @return Item */ function & get_featured_Item() { global $Blog; global $timestamp_min, $timestamp_max; global $disp, $disp_detail, $MainList; global $featured_displayed_item_ID; if( $disp != 'posts' || !isset($MainList) ) { // If we're not displaying postS, don't display a feature post on top! $Item = NULL; return $Item; } $FeaturedList = & new ItemList2( $Blog, $timestamp_min, $timestamp_max, 1 ); $FeaturedList->set_default_filters( $MainList->filters ); if( ! $MainList->is_filtered() ) { // Restrict to 'main' and 'all' intros: $restrict_to_types = '1500,1600'; } else { // Filtered... // echo $disp_detail; switch( $disp_detail ) { case 'posts-cat': $restrict_to_types = '1520,1570,1600'; break; case 'posts-tag': $restrict_to_types = '1530,1570,1600'; break; default: $restrict_to_types = '1570,1600'; } } $FeaturedList->set_filters( array( 'types' => $restrict_to_types, ), false /* Do NOT memorize!! */ ); // pre_dump( $FeaturedList->filters ); // Run the query: $FeaturedList->query(); if( $FeaturedList->result_num_rows == 0 ) { // No Intro page was found, try to find a featured post instead: $FeaturedList->reset(); $FeaturedList->set_filters( array( 'featured' => 1, // Featured posts only (TODO!) // Types will already be reset to defaults here ), false /* Do NOT memorize!! */ ); // Run the query: $FeaturedList->query(); } $Item = $FeaturedList->get_item(); // Memorize that ID so that it can later be filtered out normal display: $featured_displayed_item_ID = $Item ? $Item->ID : NULL; return $Item; } /** * Validate URL title (slug) / Also used for category slugs * * Using title as a source if url title is empty. * We allow up to 200 chars (which is ridiculously long) for WP import compatibility. * * @param string url title to validate * @param string real title to use as a source if $urltitle is empty (encoded in $evo_charset) * @param integer ID of post * @param boolean Query the DB, but don't modify the URL title if the title already exists (Useful if you only want to alert the pro user without making changes for him) * @param string The prefix of the database column names (e. g. "post_" for post_urltitle) * @param string The name of the post ID column * @param string The name of the DB table to use * @return string validated url title */ function urltitle_validate( $urltitle, $title, $post_ID = 0, $query_only = false, $dbSlugFieldName = 'post_urltitle', $dbIDname = 'post_ID', $dbtable = 'T_items__item' ) { global $DB, $Messages; $urltitle = trim( $urltitle ); $orig_title = $urltitle; if( empty( $urltitle ) ) { if( ! empty($title) ) $urltitle = $title; else $urltitle = 'title'; } // echo 'starting with: '.$urltitle.'<br />'; // Replace special chars/umlauts, if we can convert charsets: load_funcs('locales/_charset.funcs.php'); $urltitle = replace_special_chars($urltitle); // Make everything lowercase $urltitle = strtolower( $urltitle ); // Normalize to 200 chars + a number preg_match( '/^(.*?)((-|_)+([0-9]+))?$/', $urltitle, $matches ); $urlbase = substr( $matches[1], 0, 200 ); // strip a possible dash at the end of the URL title: $urlbase = rtrim( $urlbase, '-' ); $urltitle = $urlbase; if( ! empty( $matches[4] ) ) { $urltitle .= '-'.$matches[4]; } // CHECK FOR UNIQUENESS: // Find all occurrences of urltitle-number in the DB: $sql = 'SELECT '.$dbSlugFieldName.' FROM '.$dbtable.' WHERE '.$dbSlugFieldName." REGEXP '^".$urlbase."(-[0-9]+)?$'"; if( $post_ID ) { // Ignore current post $sql .= ' AND '.$dbIDname.' <> '.$post_ID; } $exact_match = false; $highest_number = 0; foreach( $DB->get_results( $sql, ARRAY_A ) as $row ) { $existing_urltitle = $row[$dbSlugFieldName]; // echo "existing = $existing_urltitle <br />"; if( $existing_urltitle == $urltitle ) { // We have an exact match, we'll have to change the number. $exact_match = true; } if( preg_match( '/-([0-9]+)$/', $existing_urltitle, $matches ) ) { // This one has a number, we extract it: $existing_number = (integer) $matches[1]; if( $existing_number > $highest_number ) { // This is the new high $highest_number = $existing_number; } } } // echo "highest existing number = $highest_number <br />"; if( $exact_match && !$query_only ) { // We got an exact match, we need to change the number: $urltitle = $urlbase.'-'.($highest_number + 1); } // echo "using = $urltitle <br />"; if( !empty($orig_title) && $urltitle != $orig_title ) { $Messages->add( sprintf(T_('Warning: the URL slug has been changed to «%s».'), $urltitle ), 'error' ); } return $urltitle; } /** * if global $postdata was not set it will be */ function get_postdata($postid) { global $DB, $postdata, $show_statuses; if( !empty($postdata) && $postdata['ID'] == $postid ) { // We are asking for postdata of current post in memory! (we're in the b2 loop) // Already in memory! This will be the case when generating permalink at display // (but not when sending trackbacks!) // echo "*** Accessing post data in memory! ***<br />\n"; return($postdata); } // echo "*** Loading post data! ***<br>\n"; // We have to load the post $sql = 'SELECT post_ID, post_creator_user_ID, post_datestart, post_datemodified, post_status, post_content, post_title, post_main_cat_ID, cat_blog_ID '; $sql .= ', post_locale, post_url, post_wordcount, post_comment_status, post_views '; $sql .= ' FROM T_items__item INNER JOIN T_categories ON post_main_cat_ID = cat_ID WHERE post_ID = '.$postid; // Restrict to the statuses we want to show: // echo $show_statuses; // fplanque: 2004-04-04: this should not be needed here. (and is indeed problematic when we want to // get a post before even knowning which blog it belongs to. We can think of putting a security check // back into the Item class) // $sql .= ' AND '.statuses_where_clause( $show_statuses ); // echo $sql; if( $myrow = $DB->get_row( $sql ) ) { $mypostdata = array ( 'ID' => $myrow->post_ID, 'Author_ID' => $myrow->post_creator_user_ID, 'Date' => $myrow->post_datestart, 'Status' => $myrow->post_status, 'Content' => $myrow->post_content, 'Title' => $myrow->post_title, 'Category' => $myrow->post_main_cat_ID, 'Locale' => $myrow->post_locale, 'Url' => $myrow->post_url, 'Wordcount' => $myrow->post_wordcount, 'views' => $myrow->post_views, 'comment_status' => $myrow->post_comment_status, 'Blog' => $myrow->cat_blog_ID, ); // Caching is particularly useful when displaying a single post and you call single_post_title several times if( !isset( $postdata ) ) $postdata = $mypostdata; // Will save time, next time :) return($mypostdata); } return false; } // @@@ These aren't template tags, do not edit them /** * Returns the number of the words in a string, sans HTML * * @todo dh> Test if http://de3.php.net/manual/en/function.str-word-count.php#85579 works better/faster * (only one preg_* call and no loop). * * @param string The string. * @return integer Number of words. * * @internal PHP's str_word_count() is not accurate. Inaccuracy reported * by sam2kb: http://forums.b2evolution.net/viewtopic.php?t=16596 */ function bpost_count_words( $str ) { $str = trim( strip_tags( $str ) ); // Note: The \p escape sequence is available since PHP 4.4.0 and 5.1.0. if( @preg_match( '|\pL|', 'foo' ) === false ) { return str_word_count( $str ); } $count = 0; foreach( preg_split( '#\s+#', convert_charset( $str, 'UTF-8' ), -1, PREG_SPLIT_NO_EMPTY ) as $word ) { if( preg_match( '#\pL#', $word ) ) { ++$count; } } return $count; } /** * Construct the where clause to limit retrieved posts on their status * * @param Array statuses of posts we want to get */ function statuses_where_clause( $show_statuses = '', $dbprefix = 'post_', $req_blog = NULL ) { global $current_User, $blog; if( is_null($req_blog ) ) { global $blog; $req_blog = $blog; } if( empty($show_statuses) ) $show_statuses = array( 'published', 'protected', 'private' ); $where = ' ( '; $or = ''; if( ($key = array_search( 'private', $show_statuses )) !== false ) { // Special handling for Private status: unset( $show_statuses[$key] ); if( is_logged_in() ) { // We need to be logged in to have a chance to see this: $where .= $or.' ( '.$dbprefix."status = 'private' AND ".$dbprefix.'creator_user_ID = '.$current_User->ID.' ) '; $or = ' OR '; } } if( $key = array_search( 'protected', $show_statuses ) ) { // Special handling for Protected status: if( (!is_logged_in()) || ($req_blog == 0) // No blog specified (ONgsb) || (!$current_User->check_perm( 'blog_ismember', 1, false, $req_blog )) ) { // we are not allowed to see this if we are not a member of the current blog: unset( $show_statuses[$key] ); } } // Remaining statuses: $other_statuses = ''; $sep = ''; foreach( $show_statuses as $other_status ) { $other_statuses .= $sep.'\''.$other_status.'\''; $sep = ','; } if( strlen( $other_statuses ) ) { $where .= $or.$dbprefix.'status IN ('. $other_statuses .') '; } $where .= ') '; // echo $where; return $where; } /** * Compose screen: display attachment iframe * * @param Form * @param boolean * @param Item * @param Blog */ function attachment_iframe( & $Form, $creating, & $edited_Item, & $Blog ) { global $admin_url, $dispatcher; global $current_User; global $Settings; $fieldset_title = T_('Images & Attachments').get_manual_link('post_attachments_fieldset'); if( $creating ) { // Creating new post $Form->begin_fieldset( $fieldset_title, array( 'id' => 'itemform_createlinks' ) ); echo '<table cellspacing="0" cellpadding="0"><tr><td>'; $Form->submit( array( 'actionArray[create_edit]', /* TRANS: This is the value of an input submit button */ T_('Save & start attaching files'), 'SaveEditButton' ) ); echo '</td></tr></table>'; $Form->end_fieldset(); } else { // Editing post $iframe_name = 'attach_'.generate_random_key( 16 ); $fieldset_title .= ' - <a href="'.$admin_url.'?ctrl=items&action=edit_links&mode=iframe&iframe_name='.$iframe_name.'&item_ID='.$edited_Item->ID .'" target="'.$iframe_name.'">'.get_icon( 'refresh', 'imgtag' ).' '.T_('Refresh').'</a>'; if( $Settings->get( 'fm_enabled' ) && $current_User->check_perm( 'files', 'view' ) && $current_User->check_perm( 'item_post!CURSTATUS', 'edit', false, $edited_Item ) ) { // Check that we have permission to edit item: $fieldset_title .= ' - <a href="'.$dispatcher.'?ctrl=files&fm_mode=link_item&item_ID='.$edited_Item->ID .'" onclick="return pop_up_window( \''.$dispatcher.'?ctrl=files&mode=upload&iframe_name=' .$iframe_name.'&fm_mode=link_item&item_ID='.$edited_Item->ID.'\', \'fileman_upload\', 1000 )">' .get_icon( 'folder', 'imgtag' ).' '.T_('Add/Link files').'</a> <span class="note">(popup)</span>'; } $Form->begin_fieldset( $fieldset_title, array( 'id' => 'itemform_links' ) ); echo '<iframe src="'.$admin_url.'?ctrl=items&action=edit_links&mode=iframe&iframe_name='.$iframe_name.'&item_ID='.$edited_Item->ID .'" name="'.$iframe_name.'" width="100%" marginwidth="0" height="160" marginheight="0" align="top" scrolling="auto" frameborder="0" id="attachmentframe"></iframe>'; $Form->end_fieldset(); } } /** * Allow recursive category selection. * * @todo Allow to use a dropdown (select) to switch between blogs ( CSS / JS onchange - no submit.. ) * * @param Form * @param boolean true: use form fields, false: display only */ function cat_select( $Form, $form_fields = true ) { global $allow_cross_posting, $cache_categories, $blog, $current_blog_ID, $current_User, $edited_Item, $cat_select_form_fields; global $cat_sel_total_count, $dispatcher; $Form->begin_fieldset( T_('Categories').get_manual_link('item_categories_fieldset'), array( 'class'=>'extracats', 'id' => 'itemform_categories' ) ); $cat_sel_total_count = 0; $r =''; $cat_select_form_fields = $form_fields; cat_load_cache(); // make sure the caches are loaded $r .= '<table cellspacing="0" class="catselect">'; $r .= cat_select_header(); if( $allow_cross_posting >= 2 ) { // If BLOG cross posting enabled, go through all blogs with cats: /** * @var BlogCache */ $BlogCache = & get_Cache('BlogCache'); /** * @var Blog */ for( $l_Blog = & $BlogCache->get_first(); !is_null($l_Blog); $l_Blog = & $BlogCache->get_next() ) { // run recursively through the cats if( ! blog_has_cats( $l_Blog->ID ) ) continue; if( ! $current_User->check_perm( 'blog_post_statuses', 'edit', false, $l_Blog->ID ) ) continue; $r .= '<tr class="group"><td colspan="3">'.$l_Blog->dget('name')."</td></tr>\n"; $cat_sel_total_count++; // the header uses 1 line $current_blog_ID = $l_Blog->ID; // Global needed in callbacks $r .= cat_children( $cache_categories, $l_Blog->ID, NULL, 'cat_select_before_first', 'cat_select_before_each', 'cat_select_after_each', 'cat_select_after_last', 1 ); } } else { // BLOG Cross posting is disabled. Current blog only: $current_blog_ID = $blog; $r .= cat_children( $cache_categories, $current_blog_ID, NULL, 'cat_select_before_first', 'cat_select_before_each', 'cat_select_after_each', 'cat_select_after_last', 1 ); } $r .= '</table>'; if( $current_User->check_perm( 'blog_cats', '', false, $blog ) ) { $r .= '<p class="extracatnote"><a href="'.$dispatcher.'?ctrl=chapters&action=new&blog='.$blog.'">'.T_('Add a new category').' »</a></p>'; } if( $cat_sel_total_count > 10 ) // Check in IE for adjusting threshhold. IE lines are FAT { // display within a div of constrained height echo '<div class="extracats"><div>'; echo $r; echo '</div></div>'; } else { // Plain display echo $r; } $Form->end_fieldset(); } /** * Header for {@link cat_select()} */ function cat_select_header() { global $current_blog_ID, $blog, $allow_cross_posting; $r = '<thead><tr><th class="selector catsel_main">'.T_('Main').'</th>'; if( $allow_cross_posting >= 1 ) { // This is current blog or we allow moving posts accross blogs $r .= '<th class="selector catsel_extra">'.T_('Extra').'</th>'; } $r .= '<th class="catsel_name">'.T_('Category').'</th></tr></thead>'; return $r; } /** * callback to start sublist */ function cat_select_before_first( $parent_cat_ID, $level ) { // callback to start sublist return ''; // "\n<ul>\n"; } /** * callback to display sublist element */ function cat_select_before_each( $cat_ID, $level, $total_count ) { // callback to display sublist element global $current_blog_ID, $blog, $post_extracats, $edited_Item; global $creating, $allow_cross_posting, $cat_select_level, $cat_select_form_fields; global $cat_sel_total_count; $cat_sel_total_count++; $ChapterCache = & get_Cache('ChapterCache'); $thisChapter = $ChapterCache->get_by_ID($cat_ID); $r = "\n".'<tr class="'.( $total_count%2 ? 'odd' : 'even' ).'">'; // RADIO for main cat: if( ($current_blog_ID == $blog) || ($allow_cross_posting > 2) ) { // This is current blog or we allow moving posts accross blogs if( $cat_select_form_fields ) { // We want a form field: $r .= '<td class="selector catsel_main"><input type="radio" name="post_category" class="checkbox" title="' .T_('Select as MAIN category').'" value="'.$cat_ID.'"'; if( $cat_ID == $edited_Item->main_cat_ID ) { // main cat of the Item or set as default main cat above $r .= ' checked="checked"'; } $r .= ' id="sel_maincat_'.$cat_ID.'"'; $r .= ' onclick="check_extracat(this);" /></td>'; } else { // We just want info: $r .= '<td class="selector catsel_main">'.bullet( $cat_ID == $edited_Item->main_cat_ID ).'</td>'; } } else { // Don't allow to select this cat as a main cat $r .= '<td class="selector catsel_main"> </td>'; } // CHECKBOX: if( $allow_cross_posting ) { // We allow cross posting, display checkbox: if( $cat_select_form_fields ) { // We want a form field: $r .= '<td class="selector catsel_extra"><input type="checkbox" name="post_extracats[]" class="checkbox" title="' .T_('Select as an additional category').'" value="'.$cat_ID.'"'; // if( ($cat_ID == $edited_Item->main_cat_ID) || (in_array( $cat_ID, $post_extracats )) ) <--- We don't want to precheck the default cat because it will stay checked if we change the default main. On edit, the checkbox will always be in the array. if( (in_array( $cat_ID, $post_extracats )) ) { $r .= ' checked="checked"'; } $r .= ' id="sel_extracat_'.$cat_ID.'"'; $r .= ' /></td>'; } else { // We just want info: $r .= '<td class="selector catsel_main">'.bullet( ($cat_ID == $edited_Item->main_cat_ID) || (in_array( $cat_ID, $post_extracats )) ).'</td>'; } } $r .= '<td class="catsel_name"><label' .' for="'.( $allow_cross_posting ? 'sel_extracat_'.$cat_ID : 'sel_maincat_'.$cat_ID ).'"' .' style="padding-left:'.($level-1).'em;">' .htmlspecialchars($thisChapter->name).'</label>' .' <a href="'.htmlspecialchars($thisChapter->get_permanent_url()).'" title="'.htmlspecialchars(T_('View category in blog.')).'">' .' » ' // TODO: dh> provide an icon instead? // fp> maybe the A(dmin)/B(log) icon from the toolbar? And also use it for permalinks to posts? .'</a>' ."</td></tr>\n"; return $r; } /** * callback after each sublist element */ function cat_select_after_each( $cat_ID, $level ) { // callback after each sublist element return ''; } /** * callback to end sublist */ function cat_select_after_last( $parent_cat_ID, $level ) { // callback to end sublist return ''; // "</ul>\n"; } /** * Used by the items & the comments controllers */ function attach_browse_tabs() { global $AdminUI, $Blog, $current_User, $dispatcher; $AdminUI->add_menu_entries( 'items', array( 'full' => array( 'text' => T_('All'), 'href' => $dispatcher.'?ctrl=items&tab=full&filter=restore&blog='.$Blog->ID, ), 'list' => array( 'text' => T_('Posts'), 'href' => $dispatcher.'?ctrl=items&tab=list&filter=restore&blog='.$Blog->ID, ), 'pages' => array( 'text' => T_('Pages'), 'href' => $dispatcher.'?ctrl=items&tab=pages&filter=restore&blog='.$Blog->ID, ), 'intros' => array( 'text' => T_('Intros'), 'href' => $dispatcher.'?ctrl=items&tab=intros&filter=restore&blog='.$Blog->ID, ), 'podcasts' => array( 'text' => T_('Podcasts'), 'href' => $dispatcher.'?ctrl=items&tab=podcasts&filter=restore&blog='.$Blog->ID, ), 'links' => array( 'text' => T_('Sidebar links'), 'href' => $dispatcher.'?ctrl=items&tab=links&filter=restore&blog='.$Blog->ID, ), ) ); if( $Blog->get_setting( 'use_workflow' ) ) { // We want to use workflow properties for this blog: $AdminUI->add_menu_entries( 'items', array( 'tracker' => array( 'text' => T_('Tracker'), 'href' => $dispatcher.'?ctrl=items&tab=tracker&filter=restore&blog='.$Blog->ID, ), ) ); } if( $current_User->check_perm( 'blog_comments', 'edit', false, $Blog->ID ) ) { $AdminUI->add_menu_entries( 'items', array( 'comments' => array( 'text' => T_('Comments'), 'href' => $dispatcher.'?ctrl=comments&blog='.$Blog->ID, ), ) ); } } /** * Allow to select status/visibility */ function visibility_select( & $Form, $post_status ) { global $current_User, $Blog; $sharing_options = array(); if( $current_User->check_perm( 'blog_post!published', 'edit', false, $Blog->ID ) ) $sharing_options[] = array( 'published', T_('Published').' <span class="notes">'.T_('(Public)').'</span>' ); if( $current_User->check_perm( 'blog_post!protected', 'edit', false, $Blog->ID ) ) $sharing_options[] = array( 'protected', T_('Protected').' <span class="notes">'.T_('(Members only)').'</span>' ); if( $current_User->check_perm( 'blog_post!private', 'edit', false, $Blog->ID ) ) $sharing_options[] = array( 'private', T_('Private').' <span class="notes">'.T_('(You only)').'</span>' ); if( $current_User->check_perm( 'blog_post!draft', 'edit', false, $Blog->ID ) ) $sharing_options[] = array( 'draft', T_('Draft').' <span class="notes">'.T_('(Not published!)').'</span>' ); if( $current_User->check_perm( 'blog_post!deprecated', 'edit', false, $Blog->ID ) ) $sharing_options[] = array( 'deprecated', T_('Deprecated').' <span class="notes">'.T_('(Not published!)').'</span>' ); if( $current_User->check_perm( 'blog_post!redirected', 'edit', false, $Blog->ID ) ) $sharing_options[] = array( 'redirected', T_('Redirected').' <span class="notes">'.T_('(301)').'</span>' ); $Form->radio( 'post_status', $post_status, $sharing_options, '', true ); } /** * Selection of the issue date * * @param Form */ function issue_date_control( $Form, $break = false ) { global $edited_Item, $set_issue_date; echo T_('Issue date').':<br />'; echo '<label><input type="radio" name="set_issue_date" id="set_issue_date_now" value="now" ' .( ($set_issue_date == 'now') ? 'checked="checked"' : '' ) .'/><strong>'.T_('Update issue date to NOW').'</strong></label>'; if( $break ) { echo '<br />'; } echo '<label><input type="radio" name="set_issue_date" id="set_issue_date_to" value="set" ' .( ($set_issue_date == 'set') ? 'checked="checked"' : '' ) .'/><strong>'.T_('Set to').':</strong></label>'; $Form->date( 'item_issue_date', $edited_Item->get('issue_date'), '' ); echo ' '; // allow wrapping! $Form->time( 'item_issue_time', $edited_Item->get('issue_date'), '', 'hh:mm:ss', '' ); echo ' '; // allow wrapping! } /** * Template tag: Link to an item identified by its url title / slug / name * * Note: this will query the database. Thus, in most situations it will make more sense * to use a hardcoded link. This tag can be useful for prototyping location independant * sites. */ function item_link_by_urltitle( $params = array() ) { // Make sure we are not missing any param: $params = array_merge( array( 'urltitle' => NULL, // MUST BE SPECIFIED 'before' => ' ', 'after' => ' ', 'text' => '#', ), $params ); /** * @var ItemCache */ $ItemCache = & get_Cache( 'ItemCache' ); /** * @var Item */ $Item = & $ItemCache->get_by_urltitle( $params['urltitle'], false ); if( empty($Item) ) { return false; } $Item->permanent_link( $params ); } /** * Output JavaScript code to dynamically show or hide the "Publish NOW!" * button depending on the selected post status. * * This function is used by the simple and expert write screens. * * @param string Are we updating or creating? ('create' or 'update'). */ function echo_publishnowbutton_js( $action ) { ?> <script type="text/javascript"> jQuery( '#itemform_visibility input[type=radio]' ).click( function() { var publishnow_btn = jQuery( '.edit_actions input[name=actionArray[<?php echo $action; ?>_publish]]' ); if( this.value != 'draft' ) { // Hide the "Publish NOW !" button: publishnow_btn.css( 'display', 'none' ); } else { // Show the button: publishnow_btn.css( 'display', 'inline' ); } } ); </script> <?php } ?>