missing files
This commit is contained in:
parent
87eaa6d8e5
commit
64c81ed174
31
Zotlabs/Module/Update_hq.php
Normal file
31
Zotlabs/Module/Update_hq.php
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
namespace Zotlabs\Module;
|
||||||
|
|
||||||
|
// See update_profile.php for documentation
|
||||||
|
|
||||||
|
require_once('include/group.php');
|
||||||
|
|
||||||
|
|
||||||
|
class Update_hq extends \Zotlabs\Web\Controller {
|
||||||
|
|
||||||
|
function get() {
|
||||||
|
|
||||||
|
$profile_uid = intval($_GET['p']);
|
||||||
|
|
||||||
|
$load = (((argc() > 1) && (argv(1) == 'load')) ? 1 : 0);
|
||||||
|
header("Content-type: text/html");
|
||||||
|
echo "<!DOCTYPE html><html><body>\r\n";
|
||||||
|
echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
|
||||||
|
|
||||||
|
$mod = new Hq();
|
||||||
|
$text = $mod->get($profile_uid, $load);
|
||||||
|
|
||||||
|
echo str_replace("\t",' ',$text);
|
||||||
|
echo (($_GET['msie'] == 1) ? '</div>' : '</section>');
|
||||||
|
echo "</body></html>\r\n";
|
||||||
|
|
||||||
|
killme();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
26
Zotlabs/Widget/Hq_controls.php
Normal file
26
Zotlabs/Widget/Hq_controls.php
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Zotlabs\Widget;
|
||||||
|
|
||||||
|
class Hq_controls {
|
||||||
|
|
||||||
|
function widget($arr) {
|
||||||
|
|
||||||
|
if (! local_channel())
|
||||||
|
return;
|
||||||
|
|
||||||
|
return replace_macros(get_markup_template('hq_controls.tpl'),
|
||||||
|
[
|
||||||
|
'$title' => t('HQ Control Panel'),
|
||||||
|
'$menu' => [
|
||||||
|
'create' => [
|
||||||
|
'label' => t('Create a new post'),
|
||||||
|
'id' => 'jot-toggle',
|
||||||
|
'href' => '#',
|
||||||
|
'class' => ''
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
8
view/tpl/hq_controls.tpl
Executable file
8
view/tpl/hq_controls.tpl
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
<div class="widget">
|
||||||
|
<h3>{{$title}}</h3>
|
||||||
|
<ul class="nav nav-pills flex-column">
|
||||||
|
{{foreach $menu as $m}}
|
||||||
|
<li class="nav-item"><a href="{{$m.href}}" id="{{$m.id}}" class="nav-link{{if $m.class}} {{$m.class}}{{/if}}">{{$m.label}}</a></li>
|
||||||
|
{{/foreach}}
|
||||||
|
</ul>
|
||||||
|
</div>
|
Reference in New Issue
Block a user