3 require_once('include/conversation.php');
4 require_once('include/items.php');
6 function bookmarklet_init(App &$a) {
7 $_GET["mode"] = "minimal";
10 function bookmarklet_content(App &$a) {
12 $o = '<h2>'.t('Login').'</h2>';
13 $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
17 $referer = normalise_link($_SERVER["HTTP_REFERER"]);
18 $page = normalise_link(App::get_baseurl()."/bookmarklet");
20 if (!strstr($referer, $page)) {
21 $content = add_page_info($_REQUEST["url"]);
25 'allow_location' => $a->user['allow_location'],
26 'default_location' => $a->user['default-location'],
27 'nickname' => $a->user['nickname'],
28 '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'),
29 'default_perms' => get_acl_permissions($a->user),
30 'acl' => populate_acl($a->user,true),
33 'profile_uid' => local_user(),
34 'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
35 'title' => trim($_REQUEST["title"], "*"),
38 $o = status_editor($a,$x, 0, false);
39 $o .= "<script>window.resizeTo(800,550);</script>";
41 $o = '<h2>'.t('The post was created').'</h2>';
42 $o .= "<script>window.close()</script>";