Author: eschwert
Date: Sat Feb 4 16:19:40 2012
New Revision: 1240530
URL: http://svn.apache.org/viewvc?rev=1240530&view=rev
Log:
File/folder name correction
Added:
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetingsDashlet/
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetingsDashlet/openmeetingsDashlet.meta.php
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetingsDashlet/openmeetingsDashlet.php
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/icons/default/images/icon_Openmeetings.gif
- copied unchanged from r1237076,
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/icons/default/images/icon_Openmeetnigs.gif
Removed:
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetnigsDashlet/
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/icons/default/images/icon_Openmeetnigs.gif
Added:
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetingsDashlet/openmeetingsDashlet.meta.php
URL:
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetingsDashlet/openmeetingsDashlet.meta.php?rev=1240530&view=auto
==============================================================================
---
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetingsDashlet/openmeetingsDashlet.meta.php
(added)
+++
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetingsDashlet/openmeetingsDashlet.meta.php
Sat Feb 4 16:19:40 2012
@@ -0,0 +1,28 @@
+<?php
+if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
+/*********************************************************************************
+* Licensed to the Apache Software Foundation (ASF) under one
+* or more contributor license agreements. See the NOTICE file
+* distributed with this work for additional information
+* regarding copyright ownership. The ASF licenses this file
+* to you under the Apache License, Version 2.0 (the
+* "License") + you may not use this file except in compliance
+* with the License. You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing,
+* software distributed under the License is distributed on an
+* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+* KIND, either express or implied. See the License for the
+* specific language governing permissions and limitations
+* under the License.
+*
********************************************************************************/
+
+global $app_strings;
+
+$dashletMeta['openmeetingsDashlet'] = array('module' =>
'openmeetings',
+
'title' => translate('LBL_HOMEPAGE_TITLE', 'openmeetings'),
+ 'description' => 'A customizable
view into openmeetings',
+ 'icon' =>
'icon_openmeetings_32.gif',
+ 'category' => 'Module Views');
\ No newline at end of file
Added:
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetingsDashlet/openmeetingsDashlet.php
URL:
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetingsDashlet/openmeetingsDashlet.php?rev=1240530&view=auto
==============================================================================
---
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetingsDashlet/openmeetingsDashlet.php
(added)
+++
incubator/openmeetings/trunk/plugins/sugarcrm/6.x.x/SugarModules/modules/openmeetings/Dashlets/openmeetingsDashlet/openmeetingsDashlet.php
Sat Feb 4 16:19:40 2012
@@ -0,0 +1,39 @@
+<?php
+if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
+/*********************************************************************************
+* Licensed to the Apache Software Foundation (ASF) under one
+* or more contributor license agreements. See the NOTICE file
+* distributed with this work for additional information
+* regarding copyright ownership. The ASF licenses this file
+* to you under the Apache License, Version 2.0 (the
+* "License") + you may not use this file except in compliance
+* with the License. You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing,
+* software distributed under the License is distributed on an
+* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+* KIND, either express or implied. See the License for the
+* specific language governing permissions and limitations
+* under the License.
+*
********************************************************************************/
+
+require_once('include/Dashlets/DashletGeneric.php');
+require_once('modules/openmeetings/openmeetings.php');
+
+class openmeetingsDashlet extends DashletGeneric {
+ function openmeetingsDashlet($id, $def = null) {
+ global $current_user, $app_strings;
+ require('modules/openmeetings/metadata/dashletviewdefs.php');
+
+ parent::DashletGeneric($id, $def);
+
+ if(empty($def['title'])) $this->title =
translate('LBL_HOMEPAGE_TITLE', 'openmeetings');
+
+ $this->searchFields =
$dashletData['openmeetingsDashlet']['searchFields'];
+ $this->columns = $dashletData['openmeetingsDashlet']['columns'];
+
+ $this->seedBean = new openmeetings();
+ }
+}
\ No newline at end of file