uexport app

This commit is contained in:
Mario Vavti 2018-10-04 11:50:38 +02:00
parent 3064f2ced5
commit d0605e8d5f
4 changed files with 24 additions and 11 deletions

View File

@ -1,18 +1,24 @@
<?php <?php
namespace Zotlabs\Module; namespace Zotlabs\Module;
use App;
use Zotlabs\Lib\Apps;
use Zotlabs\Web\Controller;
class Uexport extends \Zotlabs\Web\Controller { class Uexport extends Controller {
function init() { function init() {
if(! local_channel()) if(! local_channel())
killme(); killme();
if(! Apps::system_app_installed(local_channel(), 'Channel Export'))
return;
if(argc() > 1) { if(argc() > 1) {
$sections = (($_REQUEST['sections']) ? explode(',',$_REQUEST['sections']) : ''); $sections = (($_REQUEST['sections']) ? explode(',',$_REQUEST['sections']) : '');
$channel = \App::get_channel(); $channel = App::get_channel();
if(argc() > 1 && intval(argv(1)) > 1900) { if(argc() > 1 && intval(argv(1)) > 1900) {
$year = intval(argv(1)); $year = intval(argv(1));
@ -47,6 +53,15 @@ class Uexport extends \Zotlabs\Web\Controller {
} }
function get() { function get() {
if(! Apps::system_app_installed(local_channel(), 'Channel Export')) {
//Do not display any associated widgets at this point
App::$pdl = '';
$o = '<b>' . t('Channel Export App') . ' (' . t('Not Installed') . '):</b><br>';
$o .= t('Export your channel');
return $o;
}
$y = datetime_convert('UTC',date_default_timezone_get(),'now','Y'); $y = datetime_convert('UTC',date_default_timezone_get(),'now','Y');

View File

@ -9,7 +9,6 @@ class Settings_menu {
if(! local_channel()) if(! local_channel())
return; return;
$channel = \App::get_channel(); $channel = \App::get_channel();
$abook_self_id = 0; $abook_self_id = 0;
@ -66,12 +65,6 @@ class Settings_menu {
); );
} }
$tabs[] = array(
'label' => t('Export channel'),
'url' => z_root() . '/uexport',
'selected' => ''
);
if($role === false || $role === 'custom') { if($role === false || $role === 'custom') {
$tabs[] = array( $tabs[] = array(
'label' => t('Connection Default Permissions'), 'label' => t('Connection Default Permissions'),

6
app/uexport.apd Normal file
View File

@ -0,0 +1,6 @@
version: 1
url: $baseurl/uexport
requires: local_channel
name: Channel Export
photo: icon:download
categories: Personal, System

View File

@ -1,5 +1,4 @@
[region=aside] [region=aside]
[widget=settings_menu][/widget]
[/region] [/region]
[region=right_aside] [region=right_aside]
[widget=notifications][/widget] [widget=notifications][/widget]