[various] Improve formatting
parent
5d8129600d
commit
0f6ea75bb7
|
@ -13,12 +13,10 @@ use Friendica\Core\Renderer;
|
||||||
use Friendica\Core\Session;
|
use Friendica\Core\Session;
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
|
|
||||||
function group_text_install() {
|
function group_text_install()
|
||||||
|
{
|
||||||
Hook::register('addon_settings', 'addon/group_text/group_text.php', 'group_text_settings');
|
Hook::register('addon_settings', 'addon/group_text/group_text.php', 'group_text_settings');
|
||||||
Hook::register('addon_settings_post', 'addon/group_text/group_text.php', 'group_text_settings_post');
|
Hook::register('addon_settings_post', 'addon/group_text/group_text.php', 'group_text_settings_post');
|
||||||
|
|
||||||
Logger::notice("installed group_text");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -30,10 +28,13 @@ function group_text_install() {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function group_text_settings_post(App $a, $post) {
|
function group_text_settings_post(App $a, array $post)
|
||||||
if(! Session::getLocalUser() || empty($_POST['group_text-submit']))
|
{
|
||||||
|
if (!Session::getLocalUser() || empty($post['group_text-submit'])) {
|
||||||
return;
|
return;
|
||||||
DI::pConfig()->set(Session::getLocalUser(),'system','groupedit_image_limit',intval($_POST['group_text']));
|
}
|
||||||
|
|
||||||
|
DI::pConfig()->set(Session::getLocalUser(), 'system', 'groupedit_image_limit', intval($post['group_text']));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,15 +45,13 @@ function group_text_settings_post(App $a, $post) {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function group_text_settings(App &$a, array &$data)
|
function group_text_settings(App &$a, array &$data)
|
||||||
{
|
{
|
||||||
if (!Session::getLocalUser()) {
|
if (!Session::getLocalUser()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$enabled = DI::pConfig()->get(Session::getLocalUser(),'system','groupedit_image_limit');
|
$enabled = DI::pConfig()->get(Session::getLocalUser(), 'system', 'groupedit_image_limit');
|
||||||
|
|
||||||
$t = Renderer::getMarkupTemplate('settings.tpl', 'addon/group_text/');
|
$t = Renderer::getMarkupTemplate('settings.tpl', 'addon/group_text/');
|
||||||
$html = Renderer::replaceMacros($t, [
|
$html = Renderer::replaceMacros($t, [
|
||||||
|
|
|
@ -108,7 +108,7 @@ function libertree_post_local(App $a, array &$b)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((!Session::getLocalUser()) || (Session::getLocalUser() != $b['uid'])) {
|
if (!Session::getLocalUser() || (Session::getLocalUser() != $b['uid'])) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -92,7 +92,7 @@ function ljpost_post_local(App $a, array &$b)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((!Session::getLocalUser()) || (Session::getLocalUser() != $b['uid'])) {
|
if (!Session::getLocalUser() || (Session::getLocalUser() != $b['uid'])) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1125,7 +1125,6 @@ function pumpio_dopost(App $a, $client, int $uid, array $self, $post, string $ow
|
||||||
$reply->generator->displayName = 'pumpio';
|
$reply->generator->displayName = 'pumpio';
|
||||||
$reply->published = $post->object->inReplyTo->published;
|
$reply->published = $post->object->inReplyTo->published;
|
||||||
$reply->received = $post->object->inReplyTo->updated;
|
$reply->received = $post->object->inReplyTo->updated;
|
||||||
$reply->url = $post->object->inReplyTo->url;
|
|
||||||
pumpio_dopost($a, $client, $uid, $self, $reply, $own_id, false);
|
pumpio_dopost($a, $client, $uid, $self, $reply, $own_id, false);
|
||||||
|
|
||||||
$postarray['thr-parent'] = $post->object->inReplyTo->id;
|
$postarray['thr-parent'] = $post->object->inReplyTo->id;
|
||||||
|
@ -1219,7 +1218,7 @@ function pumpio_dopost(App $a, $client, int $uid, array $self, $post, string $ow
|
||||||
|
|
||||||
function pumpio_fetchinbox(App $a, int $uid)
|
function pumpio_fetchinbox(App $a, int $uid)
|
||||||
{
|
{
|
||||||
$ckey= DI::pConfig()->get($uid, 'pumpio', 'consumer_key');
|
$ckey = DI::pConfig()->get($uid, 'pumpio', 'consumer_key');
|
||||||
$csecret = DI::pConfig()->get($uid, 'pumpio', 'consumer_secret');
|
$csecret = DI::pConfig()->get($uid, 'pumpio', 'consumer_secret');
|
||||||
$otoken = DI::pConfig()->get($uid, 'pumpio', 'oauth_token');
|
$otoken = DI::pConfig()->get($uid, 'pumpio', 'oauth_token');
|
||||||
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
||||||
|
@ -1285,7 +1284,7 @@ function pumpio_fetchinbox(App $a, int $uid)
|
||||||
|
|
||||||
function pumpio_getallusers(App &$a, int $uid)
|
function pumpio_getallusers(App &$a, int $uid)
|
||||||
{
|
{
|
||||||
$ckey= DI::pConfig()->get($uid, 'pumpio', 'consumer_key');
|
$ckey = DI::pConfig()->get($uid, 'pumpio', 'consumer_key');
|
||||||
$csecret = DI::pConfig()->get($uid, 'pumpio', 'consumer_secret');
|
$csecret = DI::pConfig()->get($uid, 'pumpio', 'consumer_secret');
|
||||||
$otoken = DI::pConfig()->get($uid, 'pumpio', 'oauth_token');
|
$otoken = DI::pConfig()->get($uid, 'pumpio', 'oauth_token');
|
||||||
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
||||||
|
|
|
@ -73,19 +73,19 @@ function windowsphonepush_module() {}
|
||||||
* We will make sure we've got a valid user account
|
* We will make sure we've got a valid user account
|
||||||
* and if so set our configuration setting for this person.
|
* and if so set our configuration setting for this person.
|
||||||
*/
|
*/
|
||||||
function windowsphonepush_settings_post(App $a, $post)
|
function windowsphonepush_settings_post(App $a, array $post)
|
||||||
{
|
{
|
||||||
if (!Session::getLocalUser() || empty($_POST['windowsphonepush-submit'])) {
|
if (!Session::getLocalUser() || empty($post['windowsphonepush-submit'])) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$enable = intval($_POST['windowsphonepush']);
|
$enable = intval($post['windowsphonepush']);
|
||||||
DI::pConfig()->set(Session::getLocalUser(), 'windowsphonepush', 'enable', $enable);
|
DI::pConfig()->set(Session::getLocalUser(), 'windowsphonepush', 'enable', $enable);
|
||||||
|
|
||||||
if ($enable) {
|
if ($enable) {
|
||||||
DI::pConfig()->set(Session::getLocalUser(), 'windowsphonepush', 'counterunseen', 0);
|
DI::pConfig()->set(Session::getLocalUser(), 'windowsphonepush', 'counterunseen', 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
DI::pConfig()->set(Session::getLocalUser(), 'windowsphonepush', 'senditemtext', intval($_POST['windowsphonepush-senditemtext']));
|
DI::pConfig()->set(Session::getLocalUser(), 'windowsphonepush', 'senditemtext', intval($post['windowsphonepush-senditemtext']));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Called from the Addon Setting form.
|
/* Called from the Addon Setting form.
|
||||||
|
|
Loading…
Reference in New Issue