appification of the lang module
This commit is contained in:
parent
791ff25d52
commit
07cd1d1272
@ -1,13 +1,28 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace Zotlabs\Module;
|
namespace Zotlabs\Module;
|
||||||
|
|
||||||
|
use App;
|
||||||
|
use Zotlabs\Lib\Apps;
|
||||||
|
use Zotlabs\Web\Controller;
|
||||||
|
|
||||||
class Lang extends \Zotlabs\Web\Controller {
|
class Lang extends Controller {
|
||||||
|
|
||||||
function get() {
|
function get() {
|
||||||
|
|
||||||
|
if(local_channel()) {
|
||||||
|
if(! Apps::system_app_installed(local_channel(), 'Language')) {
|
||||||
|
//Do not display any associated widgets at this point
|
||||||
|
App::$pdl = '';
|
||||||
|
|
||||||
|
$o = '<b>Language App (Not Installed):</b><br>';
|
||||||
|
$o .= t('Change UI language');
|
||||||
|
return $o;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
nav_set_selected('Language');
|
nav_set_selected('Language');
|
||||||
return lang_selector();
|
return lang_selector();
|
||||||
}
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user