move et2 widget browser to api, thought link to it is currently only in old eTemplate sidebox menu

This commit is contained in:
Ralf Becker 2016-03-19 15:25:32 +00:00
parent 3453021a6d
commit 6af1e23b66
4 changed files with 81 additions and 77 deletions

View File

@ -12,6 +12,9 @@
* @version $Id$ * @version $Id$
*/ */
/*egw:uses
etemplate2;
*/
/** /**
* widget_browser shows a list of widgets, and allows you to view them one at a time. * widget_browser shows a list of widgets, and allows you to view them one at a time.

View File

@ -1,7 +1,6 @@
<?php <?php
/** /**
* EGroupware eTemplate2 widget browser * EGroupware eTemplate2 widget browser
* View & play with et2 widgets - PHP
* *
* @link http://www.egroupware.org * @link http://www.egroupware.org
* @author Nathan Gray * @author Nathan Gray
@ -12,27 +11,34 @@
* @version $Id$ * @version $Id$
*/ */
namespace EGroupware\Api\Etemplate;
use EGroupware\Api;
// explicitly list not yet ported api classes
use egw_framework;
/** /**
* eTemplate2 widget browser * eTemplate2 widget browser
*
* View & play with et2 widgets. Most of the good stuff happens * View & play with et2 widgets. Most of the good stuff happens
* on the client side via js, this is the server side. * on the client side via js, this is the server side.
*/ */
class WidgetBrowser
class etemplate_et2_widgets
{ {
public $public_functions = array( public $public_functions = array(
'index' => true 'index' => true
); );
public static function index($content = array()) public static function index()
{ {
$GLOBALS['egw_info']['flags']['currentapp'] = 'etemplate'; $GLOBALS['egw_info']['flags']['currentapp'] = 'etemplate';
$GLOBALS['egw_info']['flags']['app_header'] = 'et2 Widgets'; $GLOBALS['egw_info']['flags']['app_header'] = 'et2 Widgets';
//'js_link_registry' => True, //'js_link_registry' => True,
// Widget browser code // Widget browser code
egw_framework::validate_file('/etemplate/js/widget_browser.js'); egw_framework::validate_file('/api/js/etemplate/widget_browser.js');
// Include the etemplate2 javascript code // Include the etemplate2 javascript code
egw_framework::validate_file('.', 'etemplate2', 'etemplate'); egw_framework::validate_file('.', 'etemplate2', 'etemplate');
@ -41,19 +47,15 @@ class etemplate_et2_widgets
$theme = 'redmond'; $theme = 'redmond';
egw_framework::includeCSS("/phpgwapi/js/jquery/jquery-ui/$theme/jquery-ui-1.10.3.custom.css"); egw_framework::includeCSS("/phpgwapi/js/jquery/jquery-ui/$theme/jquery-ui-1.10.3.custom.css");
egw_framework::includeCSS('/etemplate/templates/default/etemplate2.css'); egw_framework::includeCSS('/api/templates/default/etemplate2.css');
egw_framework::includeCSS('etemplate','widget_browser',false); egw_framework::includeCSS('api','widget_browser',false);
// load translations // load translations
translation::add_app('etemplate'); Api\Translation::add_app('etemplate');
common::egw_header(); $GLOBALS['egw']->framework->render('
parse_navbar();
echo '
<div id="widget_list"></div> <div id="widget_list"></div>
<div id="widget_container"></div>'; <div id="widget_container"></div>');
common::egw_footer();
} }
} }

View File

@ -1,6 +1,6 @@
/** /**
* CSS for the widget browser * CSS for the widget browser
* etemplate.etemplate_et2_widgets.index * Api\Etemplate\WidgetBrowser.php
*/ */
/* Basic layout */ /* Basic layout */

View File

@ -1,7 +1,6 @@
<?php <?php
/** /**
* eGroupWare - Setup * EGroupware - eTemplate sidebox
* Originaly from the phpGW XSLT API
* *
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package etemplate * @package etemplate
@ -28,10 +27,10 @@
} }
$menu_title = lang('Documentation'); $menu_title = lang('Documentation');
$docs = $GLOBALS['egw_info']['server']['webserver_url'].'/etemplate/doc/'; $docs = $GLOBALS['egw_info']['server']['webserver_url'].'/etemplate/doc/';
$file = Array( $doc_file = Array(
array( array(
'text' => 'eTemplate2 Reference', 'text' => 'eTemplate2 Reference',
'link' => egw::link('/index.php','menuaction=etemplate.etemplate_et2_widgets.index', 'etemplate'), 'link' => egw::link('/index.php','menuaction=api.EGroupware\\Api\\Etemplate\\WidgetBrowser.index', 'etemplate'),
), ),
array( array(
'text' => 'eTemplate Tutorial', 'text' => 'eTemplate Tutorial',
@ -59,5 +58,5 @@
if($GLOBALS['egw_info']['flags']['currentapp'] == 'etemplate') if($GLOBALS['egw_info']['flags']['currentapp'] == 'etemplate')
{ {
display_sidebox($appname,$menu_title,$file); display_sidebox($appname, $menu_title, $doc_file);
} }