]> git.mxchange.org Git - friendica.git/commitdiff
merge status editor instances
authorFriendika <info@friendika.com>
Wed, 20 Apr 2011 12:48:12 +0000 (05:48 -0700)
committerFriendika <info@friendika.com>
Wed, 20 Apr 2011 12:48:12 +0000 (05:48 -0700)
include/conversation.php
mod/network.php
mod/profile.php

index cd24068599609045a95ab8aba3ede3ebbccf02c5..1c56fa1bfafc506825665348308900a19d591e6d 100644 (file)
@@ -672,3 +672,88 @@ function format_like($cnt,$arr,$type,$id) {
        }
        return $o;
 }}
+
+
+function status_editor($a,$x) {
+
+       $o = '';
+               
+       $geotag = (($x['allow_location']) ? load_view_file('view/jot_geotag.tpl') : '');
+
+               $tpl = load_view_file('view/jot-header.tpl');
+       
+               $a->page['htmlhead'] .= replace_macros($tpl, array(
+                       '$baseurl' => $a->get_baseurl(),
+                       '$geotag' => $geotag,
+                       '$nickname' => $x['nickname'],
+                       '$linkurl' => t('Please enter a link URL:'),
+                       '$utubeurl' => t('Please enter a YouTube link:'),
+                       '$vidurl' => t("Please enter a video\x28.ogg\x29 link/URL:"),
+                       '$audurl' => t("Please enter an audio\x28.ogg\x29 link/URL:"),
+                       '$whereareu' => t('Where are you right now?'),
+                       '$title' => t('Enter a title for this item') 
+               ));
+
+
+               $tpl = load_view_file("view/jot.tpl");
+               
+               $jotplugins = '';
+               $jotnets = '';
+
+               $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
+
+               $mail_enabled = false;
+               $pubmail_enabled = false;
+
+               if(($x['is_owner']) && (! $mail_disabled)) {
+                       $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
+                               intval(local_user())
+                       );
+                       if(count($r)) {
+                               $mail_enabled = true;
+                               if(intval($r[0]['pubmail']))
+                                       $pubmail_enabled = true;
+                       }
+               }
+
+               if($mail_enabled) {
+              $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
+                       $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . 'value="1" /> '
+               . t("Post to Email") . '</div>';
+               }
+
+               call_hooks('jot_tool', $jotplugins);
+               call_hooks('jot_networks', $jotnets);
+
+               $tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));        
+
+               $o .= replace_macros($tpl,array(
+                       '$return_path' => $a->cmd,
+                       '$action' => 'item',
+                       '$share' => t('Share'),
+                       '$upload' => t('Upload photo'),
+                       '$weblink' => t('Insert web link'),
+                       '$youtube' => t('Insert YouTube video'),
+                       '$video' => t('Insert Vorbis [.ogg] video'),
+                       '$audio' => t('Insert Vorbis [.ogg] audio'),
+                       '$setloc' => t('Set your location'),
+                       '$noloc' => t('Clear browser location'),
+                       '$title' => t('Set title'),
+                       '$wait' => t('Please wait'),
+                       '$permset' => t('Permission settings'),
+                       '$content' => '',
+                       '$post_id' => '',
+                       '$baseurl' => $a->get_baseurl(),
+                       '$defloc' => $x['default-location'],
+                       '$visitor' => $x['visitor'],
+                       '$emailcc' => t('CC: email addresses'),
+                       '$jotnets' => $jotnets,
+                       '$emtitle' => t('Example: bob@example.com, mary@example.com'),
+                       '$lockstate' => $x['lockstate'],
+                       '$acl' => $x['acl'],
+                       '$bang' => $x['bang'],
+                       '$profile_uid' => $x['profile_uid'],
+               ));
+
+       return $o;
+}
\ No newline at end of file
index 3e6c5dc4a5821148f84260aed9488d40e25ea3e3..f40d34353204f717c420a52b7b3c5b91a4e10807 100644 (file)
@@ -71,91 +71,21 @@ function network_content(&$a, $update = 0) {
 
                $_SESSION['return_url'] = $a->cmd;
 
-               $geotag = (($a->user['allow_location']) ? load_view_file('view/jot_geotag.tpl') : '');
-
-               $tpl = load_view_file('view/jot-header.tpl');
-       
-               $a->page['htmlhead'] .= replace_macros($tpl, array(
-                       '$baseurl' => $a->get_baseurl(),
-                       '$geotag' => $geotag,
-                       '$nickname' => $a->user['nickname'],
-                       '$linkurl' => t('Please enter a link URL:'),
-                       '$utubeurl' => t('Please enter a YouTube link:'),
-                       '$vidurl' => t("Please enter a video\x28.ogg\x29 link/URL:"),
-                       '$audurl' => t("Please enter an audio\x28.ogg\x29 link/URL:"),
-                       '$whereareu' => t('Where are you right now?'),
-                       '$title' => t('Enter a title for this item') 
-               ));
-
-
-               $tpl = load_view_file("view/jot.tpl");
-               
-               if(($group) || (is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid'])))))
-                               $lockstate = 'lock';
-                       else
-                               $lockstate = 'unlock';
-
                $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
 
-               $jotplugins = '';
-               $jotnets = '';
-
-               $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
-
-               $mail_enabled = false;
-               $pubmail_enabled = false;
-
-               if(! $mail_disabled) {
-                       $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
-                               intval(local_user())
-                       );
-                       if(count($r)) {
-                               $mail_enabled = true;
-                               if(intval($r[0]['pubmail']))
-                                       $pubmail_enabled = true;
-                       }
-               }
-
-               if($mail_enabled) {
-              $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
-                       $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . 'value="1" /> '
-               . t("Post to Email") . '</div>';
-               }
-
-
-               call_hooks('jot_tool', $jotplugins);
-               call_hooks('jot_networks', $jotnets);
-
-               $tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));        
-
-               $o .= replace_macros($tpl,array(
-                       '$return_path' => $a->cmd,
-                       '$action' => 'item',
-                       '$share' => t('Share'),
-                       '$upload' => t('Upload photo'),
-                       '$weblink' => t('Insert web link'),
-                       '$youtube' => t('Insert YouTube video'),
-                       '$video' => t('Insert Vorbis [.ogg] video'),
-                       '$audio' => t('Insert Vorbis [.ogg] audio'),
-                       '$setloc' => t('Set your location'),
-                       '$noloc' => t('Clear browser location'),
-                       '$title' => t('Set title'),
-                       '$wait' => t('Please wait'),
-                       '$permset' => t('Permission settings'),
-                       '$content' => '',
-                       '$post_id' => '',
-                       '$baseurl' => $a->get_baseurl(),
-                       '$defloc' => $a->user['default-location'],
-                       '$visitor' => 'block',
-                       '$emailcc' => t('CC: email addresses'),
-                       '$jotnets' => $jotnets,
-                       '$emtitle' => t('Example: bob@example.com, mary@example.com'),
-                       '$lockstate' => $lockstate,
-                       '$acl' => populate_acl((($group || $cid) ? $def_acl : $a->user), $celeb),
-                       '$bang' => (($group || $cid) ? '!' : ''),
-                       '$profile_uid' => local_user()
-               ));
+               $x = array(
+                       'is_owner' => true,
+                       'allow_location' => $a->user['allow_location'],
+                       'default_location' => $a->user['default_location'],
+                       'nickname' => $a->user['nickname'],
+                       'lockstate' => ((($group) || (is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid']))))) ? 'lock' : 'unlock'),
+                       'acl' => populate_acl((($group || $cid) ? $def_acl : $a->user), $celeb),
+                       'bang' => (($group || $cid) ? '!' : ''),
+                       'visitor' => 'block',
+                       'profile_uid' => local_user()
+               );
 
+               $o .= status_editor($a,$x);
 
                // The special div is needed for liveUpdate to kick in for this page.
                // We only launch liveUpdate if you are on the front page, you aren't
index 77df6cbdbad5a54bc7bcddd6744545ed39b7ddbc..eea6b92a5894613ae7c436b50c5094a005d0a0ca 100644 (file)
@@ -120,88 +120,19 @@ function profile_content(&$a, $update = 0) {
 
                if(can_write_wall($a,$a->profile['profile_uid'])) {
 
-                       $geotag = ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? load_view_file('view/jot_geotag.tpl') : '');
-
-                       $tpl = load_view_file('view/jot-header.tpl');
-       
-                       $a->page['htmlhead'] .= replace_macros($tpl, array(
-                               '$baseurl' => $a->get_baseurl(),
-                               '$geotag'  => $geotag,
-                               '$nickname' => $a->profile['nickname'],
-                               '$linkurl' => t('Please enter a link URL:'),
-                               '$utubeurl' => t('Please enter a YouTube link:'),
-                               '$vidurl' => t("Please enter a video\x28.ogg\x29 link/URL:"),
-                               '$audurl' => t("Please enter an audio\x28.ogg\x29 link/URL:"),
-                               '$whereareu' => t('Where are you right now?'),
-                               '$title' => t('Enter a title for this item') 
-                       ));
-
-                       require_once('include/acl_selectors.php');
-
-                       $tpl = load_view_file('view/jot.tpl');
-
-                       if(is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid']))))
-                               $lockstate = 'lock';
-                       else
-                               $lockstate = 'unlock';
-       
-                       $jotplugins = '';
-                       $jotnets = '';
-
-                       $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
-
-                       $mail_enabled = false;
-                       $pubmail_enabled = false;
-
-                       if(($is_owner) && (! $mail_disabled)) {
-                               $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
-                                       intval(local_user())
-                               );
-                               if(count($r)) {
-                                       $mail_enabled = true;
-                                       if(intval($r[0]['pubmail']))
-                                               $pubmail_enabled = true;
-                               }
-                       }
-                       if($mail_enabled) {
-                      $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
-                               $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . 'value="1" /> '
-               . t("Post to Email") . '</div>';
-                       }
-                                       
-                       call_hooks('jot_tool', $jotplugins); 
-
-                       call_hooks('jot_networks', $jotnets);
-
-                       $tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));        
-
-                       $o .= replace_macros($tpl,array(
-                               '$baseurl' => $a->get_baseurl(),
-                               '$action' => 'item',
-                               '$share' => t('Share'),
-                               '$upload' => t('Upload photo'),
-                               '$weblink' => t('Insert web link'),
-                               '$youtube' => t('Insert YouTube video'),
-                               '$video' => t('Insert Vorbis [.ogg] video'),
-                               '$audio' => t('Insert Vorbis [.ogg] audio'),
-                               '$setloc' => t('Set your location'),
-                               '$noloc' => t('Clear browser location'),
-                               '$title' => t('Set title'),
-                               '$wait' => t('Please wait'),
-                               '$permset' => t('Permission settings'),
-                               '$content' => '',
-                               '$post_id' => '',
-                               '$defloc' => (($is_owner) ? $a->user['default-location'] : ''),
-                               '$return_path' => $a->cmd,
-                               '$visitor' => (($is_owner || $commvisitor) ? 'block' : 'none'),
-                               '$lockstate' => $lockstate,
-                               '$emailcc' => t('CC: email addresses'),
-                               '$jotnets' => $jotnets,
-                               '$emtitle' => t('Example: bob@example.com, mary@example.com'),
-                               '$bang' => '',
-                               '$acl' => (($is_owner) ? populate_acl($a->user, $celeb) : ''),
-                               '$profile_uid' => $a->profile['profile_uid']
-                       ));
+                       $x = array(
+                               'is_owner' => $is_owner,
+               'allow_location' => ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? true : false),
+                   'default_location' => (($is_owner) ? $a->user['default-location'] : ''),
+               'nickname' => $a->profile['nickname'],
+                   'lockstate' => (((is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid']))))) ? 'lock' : 'unlock'),
+               'acl' => (($is_owner) ? populate_acl($a->user, $celeb) : ''),
+                   'bang' => '',
+               'visitor' => (($is_owner || $commvisitor) ? 'block' : 'none'),
+                   'profile_uid' => $a->profile['profile_uid']
+               );
+
+               $o .= status_editor($a,$x);
                }
 
                // This is ugly, but we can't pass the profile_uid through the session to the ajax updater,