diff options
author | Friendika <info@friendika.com> | 2011-04-17 23:27:11 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-17 23:27:11 -0700 |
commit | ab099e91028122dfb6b10cf9510b1b061f6f547f (patch) | |
tree | 126742a2c75edd037b52de9e2525f1cffd630604 /mod/editpost.php | |
parent | 7cc5a9bba9ee892bac41fe3af4ae00da846ca96a (diff) | |
download | volse-hubzilla-ab099e91028122dfb6b10cf9510b1b061f6f547f.tar.gz volse-hubzilla-ab099e91028122dfb6b10cf9510b1b061f6f547f.tar.bz2 volse-hubzilla-ab099e91028122dfb6b10cf9510b1b061f6f547f.zip |
email integration, cont.
Diffstat (limited to 'mod/editpost.php')
-rw-r--r-- | mod/editpost.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mod/editpost.php b/mod/editpost.php index 862ba937f..7a102119b 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -51,6 +51,28 @@ function editpost_content(&$a) { $jotplugins = ''; $jotnets = ''; + + $mail_enabled = false; + $pubmail_enabled = false; + + + $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); |