0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
3.3.1-5
/
standard
/
htdocs
/
inc
/
widgets
/
widgets
/
[
Home
]
File: _linkblog.widget.php
<?php /** * This file implements the linkblog_Widget class. * * 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/} * * {@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 * }} * * @package evocore * * {@internal Below is a list of authors who have contributed to design/coding of this file: }} * @author fplanque: Francois PLANQUE. * * @version $Id: _linkblog.widget.php,v 1.22 2009/03/20 23:20:16 fplanque Exp $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); load_class( 'widgets/widgets/_coll_item_list.widget.php' ); /** * linkblog_widget class * * This widget displays another blog as a linkblog. * * @package evocore */ class linkblog_Widget extends coll_item_list_Widget { /** * Constructor */ function linkblog_Widget( $db_row = NULL ) { // Call parent constructor: parent::ComponentWidget( $db_row, 'core', 'linkblog' ); } /** * Get definitions for editable params * * @see Plugin::GetDefaultSettings() * @param local params like 'for_editing' => true */ function get_param_definitions( $params ) { // This is derived from coll_post_list_Widget, so we DO NOT ADD ANY param here! $r = parent::get_param_definitions( $params ); // We only change the defaults and hide some params. $r['title']['defaultvalue'] = T_('Linkblog'); $r['title_link']['no_edit'] = true; $r['follow_mainlist']['no_edit'] = true; $r['blog_ID']['defaultvalue'] = 0; // zero is a magic number that we'll use to try and use defaults used in previous versions of B2evo $r['item_group_by']['defaultvalue'] = 'chapter'; $r['item_title_link_type']['no_edit'] = true; $r['disp_excerpt']['no_edit'] = true; $r['disp_teaser']['no_edit'] = true; $r['disp_teaser_maxwords']['no_edit'] = true; $r['widget_css_class']['no_edit'] = true; $r['widget_ID']['no_edit'] = true; return $r; } /** * Get name of widget */ function get_name() { return T_('Simple Linkblog Links list'); } /** * Get a very short desc. Used in the widget list. */ function get_short_desc() { return format_to_output($this->disp_params['title']); } /** * Get short description */ function get_desc() { return T_('Simplified Item list for listing links from another blog.'); } /** * Display the widget! * * @param array MUST contain at least the basic display params */ function display( $params ) { global $Blog; $this->init_display( $params ); // Force some params (because this is a simplified widget): if( $this->disp_params['blog_ID'] == 0 ) { // We want to try and use previous defaults: if( !empty( $this->disp_params['linkblog_ID'] ) ) { $params['blog_ID'] = $this->disp_params['linkblog_ID']; } else { // Recycle the previous value from deprecated links_blog_ID param. We will eventually drop that field from the database. $params['blog_ID'] = $Blog->get('links_blog_ID'); } } parent::display( $params ); return true; } } ?>
© 2017 -
ZeroByte.ID
.