Seditio Source
Root |
./othercms/b2evolution_7.2.3/skins/green_bootstrap_theme/manual/_item_list.inc.php
<?php
/**
 * This is the template that displays the item block in list
 *
 * This file is not meant to be called directly.
 * It is meant to be called by an include in the main.page.php template (or other templates)
 *
 * b2evolution - {@link http://b2evolution.net/}
 * Released under GNU GPL License - {@link http://b2evolution.net/about/gnu-gpl-license}
 * @copyright (c)2003-2020 by Francois Planque - {@link http://fplanque.com/}
 *
 * @package evoskins
 * @subpackage bootstrap_manual
 */
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );

// Default params:
$params = array_merge( array(
       
'post_navigation'   => 'same_category', // Always navigate through category in this skin
       
'Item'              => NULL,
       
// Params with mask values: $item_icon$, $flag_icon$, $item_status$, $read_status$, $link_view_changes$
       
'before_title'      => '<h3>',
       
'after_title'       => '$flag_icon$</h3>$item_status$',
       
'before_title_text' => '$item_icon$',
       
'after_title_text'  => '',
       
'item_link_type'    => '#',
       
'content_mode'      => 'auto', // Can be 'excerpt', 'normal' or 'full'. 'auto' will auto select depending on backoffice SEO settings for $disp-detail
       
'intro_mode'        => 'normal', // Same as above. This will typically be forced to "normal" when displaying an intro section so that intro posts always display as normal there
   
), $params );

global
$Item;
if( ! empty(
$params['Item'] ) )
{
// Get Item from params:
   
$Item = $params['Item'];
}

// Replace masks with values in params:
$mask_params = array( 'before_title', 'after_title', 'before_title_text', 'after_title_text' );
$mask_values = array();
foreach(
$mask_params as $mask_param )
{
    if(
strpos( $params[ $mask_param ], '$flag_icon$' ) !== false && ! isset( $mask_values['$flag_icon$'] ) )
    {    
// Flag icon:
       
$mask_values['$flag_icon$'] = $Item->get_flag( array(
               
'before'       => ' ',
               
'only_flagged' => true,
               
'allow_toggle' => false,
            ) );
    }
    if(
strpos( $params[ $mask_param ], '$item_icon$' ) !== false && ! isset( $mask_values['$item_icon$'] ) )
    {    
// Item icon:
       
$mask_values['$item_icon$'] = get_icon( 'file_message' );
    }
    if(
strpos( $params[ $mask_param ], '$item_status$' ) !== false && ! isset( $mask_values['$item_status$'] ) )
    {    
// Status(only not published):
       
$mask_values['$item_status$'] = $Item->status == 'published' ? '' : $Item->get_format_status( array(
               
'template' => '<div class="evo_status evo_status__$status$ badge" data-toggle="tooltip" data-placement="top" title="$tooltip_title$">$status_title$</div>',
            ) );
    }
    if(
strpos( $params[ $mask_param ], '$read_status$' ) !== false && ! isset( $mask_values['$read_status$'] ) )
    {    
// Read status(New/Updated/Read):
       
$mask_values['$read_status$'] = $Item->get_unread_status( array(
               
'style'  => 'text',
               
'before' => '<span class="evo_post_read_status">',
               
'after'  => '</span>'
           
) );
    }
    if(
strpos( $params[ $mask_param ], '$link_view_changes$' ) !== false && ! isset( $mask_values['$link_view_changes$'] ) )
    {    
// Link to view changes:
       
$mask_values['$link_view_changes$'] = $Item->get_changes_link( array(
               
'class' => button_class( 'text' ),
            ) );
    }
   
$params[ $mask_param ] = str_replace( array_keys( $mask_values ), $mask_values, $params[ $mask_param ] );
}
?>
<li><?php
       
// ------------------------- "Item in List" CONTAINER EMBEDDED HERE --------------------------
        // Display container contents:
       
widget_container( 'item_in_list', array(
           
'widget_context' => 'item',    // Signal that we are displaying within an Item
            // The following (optional) params will be used as defaults for widgets included in this container:
           
'container_display_if_empty' => false, // If no widget, don't display container at all
            // This will enclose each widget in a block:
           
'block_start' => '<div class="evo_widget $wi_class$">',
           
'block_end' => '</div>',
           
// This will enclose the title of each widget:
           
'block_title_start' => '<h3>',
           
'block_title_end' => '</h3>',

           
// Controlling the title:
           
'widget_item_title_params'  => array(
               
'before'          => $params['before_title'],
               
'after'           => $params['after_title'],
               
'before_title'    => $params['before_title_text'],
               
'after_title'     => $params['after_title_text'],
               
'post_navigation' => $params['post_navigation'],
               
'link_type'       => $params['item_link_type'],
               
'link_class'      => 'link',
            ),
           
// Item Visibility Badge widget template
           
'widget_item_visibility_badge_display' => ( ! $Item->is_intro() && $Item->status != 'published' ),
           
'widget_item_visibility_badge_params'  => array(
                   
'template' => '<div class="evo_status evo_status__$status$ badge pull-right" data-toggle="tooltip" data-placement="top" title="$tooltip_title$">$status_title$</div>',
                ),
           
// Params for widget "Item Content":
           
'widget_item_content_params' => array(
                   
'content_mode' => $params['content_mode'],
                   
'intro_mode'   => $params['intro_mode'],
                ),
        ) );
       
// ----------------------------- END OF "Item in List" CONTAINER -----------------------------

?></li>