]> git.mxchange.org Git - friendica.git/commitdiff
added remote_self as option to the contact repair dislog
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 22 Dec 2013 16:05:49 +0000 (17:05 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 22 Dec 2013 16:05:49 +0000 (17:05 +0100)
mod/crepair.php
view/templates/crepair.tpl

index ec56d7c284cc3700d3a6ebfd022ef56f44c34df3..1324185342c97382280a473caa9e5d73b27efff2 100644 (file)
@@ -59,8 +59,9 @@ function crepair_post(&$a) {
        $poll    = ((x($_POST,'poll')) ? $_POST['poll'] : '');
        $attag   = ((x($_POST,'attag')) ? $_POST['attag'] : '');
        $photo   = ((x($_POST,'photo')) ? $_POST['photo'] : '');
+       $remote_self = ((x($_POST,'remote_self')) ? intval($_POST['remote_self']) : 0);
 
-       $r = q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `url` = '%s', `request` = '%s', `confirm` = '%s', `notify` = '%s', `poll` = '%s', `attag` = '%s' 
+       $r = q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `url` = '%s', `request` = '%s', `confirm` = '%s', `notify` = '%s', `poll` = '%s', `attag` = '%s', `remote_self` = '%d'
                WHERE `id` = %d AND `uid` = %d LIMIT 1",
                dbesc($name),
                dbesc($nick),
@@ -70,6 +71,7 @@ function crepair_post(&$a) {
                dbesc($notify),
                dbesc($poll),
                dbesc($attag),
+               $remote_self,
                intval($contact['id']),
                local_user()
        );
@@ -154,6 +156,8 @@ function crepair_content(&$a) {
                '$label_notify' => t('Notification Endpoint URL'),
                '$label_poll' => t('Poll/Feed URL'),
                '$label_photo' => t('New photo from this URL'),
+               '$label_remote_self' => t('Remote Self'),
+               '$remote_self' => array('remote_self', t('Mirror postings from this contact'), $contact['remote_self'], t('Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.')),  
                '$contact_name' => $contact['name'],
                '$contact_nick' => $contact['nick'],
                '$contact_id'   => $contact['id'],
@@ -164,7 +168,7 @@ function crepair_content(&$a) {
                '$poll'         => $contact['poll'],
                '$contact_attag'  => $contact['attag'],
                '$lbl_submit'   => t('Submit')
-       ));
+           ));
 
        return $o;
 
index 8d3ed7df892e0b056756509d50b88896038b2f3f..27c11fa922538ef22f6a27b6654b0cc68a5812d9 100644 (file)
@@ -1,9 +1,3 @@
-{{*
- *     AUTOMATICALLY GENERATED TEMPLATE
- *     DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
- *
- *}}
-
 <form id="crepair-form" action="crepair/{{$contact_id}}" method="post" >
 
 <h4>{{$contact_name}}</h4>
@@ -44,6 +38,9 @@
 <input type="text" id="crepair-photo" class="crepair-input" name="photo" value="" />
 <div class="clear"></div>
 
+<h4>{{$label_remote_self}}</h4>
+{{include file="field_checkbox.tpl" field=$remote_self}}
+
 <input type="submit" name="submit" value="{{$lbl_submit}}" />
 
 </form>