mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
124 lines
3.1 KiB
PHP
124 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware - Home - A simple portlet for displaying an entry
|
|
*
|
|
* @link www.egroupware.org
|
|
* @author Nathan Gray
|
|
* @copyright (c) 2013 by Nathan Gray
|
|
* @package home
|
|
* @subpackage portlet
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
class home_link_portlet extends home_portlet
|
|
{
|
|
|
|
/**
|
|
* Context for this portlet
|
|
*/
|
|
protected $context = array();
|
|
|
|
/**
|
|
* Title of entry
|
|
*/
|
|
protected $title = 'Link';
|
|
|
|
/**
|
|
* Construct the portlet
|
|
*
|
|
*/
|
|
public function __construct(Array &$context = array())
|
|
{
|
|
$this->context = $context;
|
|
if($context['entry'])
|
|
{
|
|
$this->title = $context['entry']['title'] = egw_link::title($context['entry']['app'], $context['entry']['id']);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Some descriptive information about the portlet, so that users can decide if
|
|
* they want it or not, and for inclusion in lists, hover text, etc.
|
|
*
|
|
* These should be already translated, no further translation will be done.
|
|
*
|
|
* @return Array with keys
|
|
* - displayName: Used in lists
|
|
* - title: Put in the portlet header
|
|
* - description: A short description of what this portlet does or displays
|
|
*/
|
|
public function get_description()
|
|
{
|
|
return array(
|
|
'displayName'=> 'Single Entry',
|
|
'title'=> $this->context['entry'] ? lang($this->context['entry']['app']) : lang('None'),
|
|
'description'=> lang('Show one entry')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get a fragment of HTML for display
|
|
*
|
|
* @param content Array Values returned from a submit, if any
|
|
* @param context Settings for customizing the portlet
|
|
* @return string HTML fragment for display
|
|
*/
|
|
public function get_content()
|
|
{
|
|
return $this->title;
|
|
}
|
|
|
|
/**
|
|
* Return a list of settings to customize the portlet.
|
|
*
|
|
* Settings should be in the same style as for preferences. It is OK to return an empty array
|
|
* for no customizable settings.
|
|
*
|
|
* These should be already translated, no further translation will be done.
|
|
*
|
|
* @see preferences/inc/class.preferences_settings.inc.php
|
|
* @return Array of settings. Each setting should have the following keys:
|
|
* - name: Internal reference
|
|
* - type: Widget type for editing
|
|
* - label: Human name
|
|
* - help: Description of the setting, and what it does
|
|
* - default: Default value, for when it's not set yet
|
|
*/
|
|
public function get_properties()
|
|
{
|
|
return array(
|
|
array(
|
|
'name' => 'entry',
|
|
'type' => 'link-entry',
|
|
'label' => lang('Entry'),
|
|
)
|
|
) + parent::get_properties();
|
|
}
|
|
|
|
/**
|
|
* Return a list of allowable actions for the portlet.
|
|
*
|
|
* These actions will be merged with the default porlet actions.
|
|
* We add an 'edit' action as default so double-clicking the widget
|
|
* opens the entry
|
|
*/
|
|
public function get_actions()
|
|
{
|
|
$actions = array(
|
|
'view' => array(
|
|
'icon' => 'view',
|
|
'caption' => lang('open'),
|
|
'default' => true,
|
|
'hideOnDisabled' => false,
|
|
'onExecute' => 'javaScript:app.home.open_link',
|
|
),
|
|
'edit_settings' => array(
|
|
'default' => false
|
|
)
|
|
);
|
|
$actions['view']['enabled'] = (bool)$this->context['entry'];
|
|
return $actions;
|
|
}
|
|
}
|