]> git.wh0rd.org - tt-rss.git/blob - modules/popup-dialog.php
add dijit buttons in create filter dialog; code cleanup
[tt-rss.git] / modules / popup-dialog.php
1 <?php
2 function module_popup_dialog($link) {
3 $id = $_REQUEST["id"];
4 $param = db_escape_string($_REQUEST["param"]);
5
6 print "<dlg id=\"$id\">";
7
8 if ($id == "importOpml") {
9 print "<title>".__('OPML Import')."</title>";
10 print "<content><![CDATA[";
11
12 print "<div class=\"prefFeedCatHolder\">";
13
14 $owner_uid = $_SESSION["uid"];
15
16 db_query($link, "BEGIN");
17
18 /* create Imported feeds category just in case */
19
20 $result = db_query($link, "SELECT id FROM
21 ttrss_feed_categories WHERE title = 'Imported feeds' AND
22 owner_uid = '$owner_uid' LIMIT 1");
23
24 if (db_num_rows($result) == 0) {
25 db_query($link, "INSERT INTO ttrss_feed_categories
26 (title,owner_uid)
27 VALUES ('Imported feeds', '$owner_uid')");
28 }
29
30 db_query($link, "COMMIT");
31
32 /* Handle OPML import by DOMXML/DOMDocument */
33
34 if (function_exists('domxml_open_file')) {
35 print "<ul class='nomarks'>";
36 print "<li>".__("Importing using DOMXML.")."</li>";
37 require_once "opml_domxml.php";
38 opml_import_domxml($link, $owner_uid);
39 print "</ul>";
40 } else if (PHP_VERSION >= 5) {
41 print "<ul class='nomarks'>";
42 print "<li>".__("Importing using DOMDocument.")."</li>";
43 require_once "opml_domdoc.php";
44 opml_import_domdoc($link, $owner_uid);
45 print "</ul>";
46 } else {
47 print_error(__("DOMXML extension is not found. It is required for PHP versions below 5."));
48 }
49
50 print "</div>";
51
52 print "<div align='center'>";
53
54 print "<button onclick=\"return opmlImportDone()\">".
55 __('Close this window')."</button>";
56
57 print "</div>";
58
59 print "<script type=\"text/javascript\">";
60 print "parent.opmlImportHandler(this)";
61 print "</script>";
62
63 print "</div>";
64 print "]]></content>";
65
66 //return;
67 }
68
69 if ($id == "editPrefProfiles") {
70
71 print "<title>".__('Settings Profiles')."</title>";
72 print "<content><![CDATA[";
73
74 print "<div><input id=\"fadd_profile\"
75 onkeypress=\"return filterCR(event, addPrefProfile)\"
76 size=\"40\">
77 <button onclick=\"javascript:addPrefProfile()\">".
78 __('Create profile')."</button></div>";
79
80 print "<p>";
81
82 $result = db_query($link, "SELECT title,id FROM ttrss_settings_profiles
83 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
84
85 print __('Select:')."
86 <a href=\"#\" onclick=\"selectTableRows('prefFeedCatList', 'all')\">".__('All')."</a>,
87 <a href=\"#\" onclick=\"selectTableRows('prefFeedCatList', 'none')\">".__('None')."</a>";
88
89 print "<div class=\"prefFeedCatHolder\">";
90
91 print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";
92
93 print "<table width=\"100%\" class=\"prefFeedCatList\"
94 cellspacing=\"0\" id=\"prefFeedCatList\">";
95
96 print "<tr class=\"odd\" id=\"FCATR-0\">";
97
98 print "<td width='5%' align='center'><input
99 onclick='toggleSelectRow(this);'
100 type=\"checkbox\" id=\"FCCHK-0\"></td>";
101
102 if (!$_SESSION["profile"]) {
103 $is_active = __("(active)");
104 } else {
105 $is_active = "";
106 }
107
108 print "<td><span id=\"FCATT-0\">" .
109 __("Default profile") . " $is_active</span></td>";
110
111 print "</tr>";
112
113 $lnum = 1;
114
115 while ($line = db_fetch_assoc($result)) {
116
117 $class = ($lnum % 2) ? "even" : "odd";
118
119 $cat_id = $line["id"];
120 $this_row_id = "id=\"FCATR-$cat_id\"";
121
122 print "<tr class=\"$class\" $this_row_id>";
123
124 $edit_title = htmlspecialchars($line["title"]);
125
126 print "<td width='5%' align='center'><input
127 onclick='toggleSelectRow(this);'
128 type=\"checkbox\" id=\"FCCHK-$cat_id\"></td>";
129
130 if ($_SESSION["profile"] == $line["id"]) {
131 $is_active = __("(active)");
132 } else {
133 $is_active = "";
134 }
135
136 print "<td><span id=\"FCATT-$cat_id\">" .
137 $edit_title . "</span> $is_active</td>";
138
139 print "</tr>";
140
141 ++$lnum;
142 }
143
144 print "</table>";
145 print "</form>";
146 print "</div>";
147
148 print "<div class='dlgButtons'>
149 <div style='float : left'>
150 <button onclick=\"return removeSelectedPrefProfiles()\">".
151 __('Remove')."</button>
152 <button onclick=\"return activatePrefProfile()\">".
153 __('Activate')."</button>
154 </div>";
155
156 print "<button onclick=\"return closeInfoBox()\">".
157 __('Close this window')."</button>";
158
159 print "</div>";
160 print "]]></content>";
161
162 //return;
163 }
164
165 if ($id == "pubOPMLUrl") {
166
167 print "<title>".__('Public OPML URL')."</title>";
168 print "<content><![CDATA[";
169
170 $url_path = opml_publish_url($link);
171
172 print __("Your Public OPML URL is:");
173
174 print "<div class=\"tagCloudContainer\">";
175 print "<a id='pub_opml_url' href='$url_path' target='_blank'>$url_path</a>";
176 print "</div>";
177
178 print "<div align='center'>";
179
180 print "<button dojoType=\"dijit.form.Button\" onclick=\"return opmlRegenKey()\">".
181 __('Generate new URL')."</button> ";
182
183 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
184 __('Close this window')."</button>";
185
186 print "</div>";
187 print "]]></content>";
188
189 //return;
190 }
191
192 if ($id == "explainError") {
193
194 print "<title>".__('Notice')."</title>";
195 print "<content><![CDATA[";
196
197 print "<div class=\"errorExplained\">";
198
199 if ($param == 1) {
200 print __("Update daemon is enabled in configuration, but daemon process is not running, which prevents all feeds from updating. Please start the daemon process or contact instance owner.");
201
202 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
203
204 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
205
206 }
207
208 if ($param == 2) {
209 $msg = check_for_update($link);
210
211 if (!$msg) {
212 print __("You are running the latest version of Tiny Tiny RSS. The fact that you are seeing this dialog is probably a bug.");
213 } else {
214 print $msg;
215 }
216
217 }
218
219 if ($param == 3) {
220 print __("Update daemon is taking too long to perform a feed update. This could indicate a problem like crash or a hang. Please check the daemon process or contact instance owner.");
221
222 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
223
224 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
225
226 }
227
228 print "</div>";
229
230 print "<div align='center'>";
231
232 print "<button onclick=\"return closeInfoBox()\"".
233 __('Close this window')."</button>";
234
235 print "</div>";
236 print "]]></content>";
237
238 //return;
239 }
240
241 if ($id == "quickAddFeed") {
242
243 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
244 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"addfeed\">";
245
246 print "<div class=\"dlgSec\">".__("Feed")."</div>";
247 print "<div class=\"dlgSecCont\">";
248
249 print "<input style=\"font-size : 16px; width : 20em;\"
250 placeHolder=\"".__("Feed URL")."\"
251 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
252
253 print "<br/>";
254
255 if (get_pref($link, 'ENABLE_FEED_CATS')) {
256 print __('Place in category:') . " ";
257 print_feed_cat_select($link, "cat", false, 'dojoType="dijit.form.Select"');
258 }
259
260 print "</div>";
261
262 print '<div id="feedDlg_feedsContainer" style="display : none">
263
264 <div class="dlgSec">' . __('Available feeds') . '</div>
265 <div class="dlgSecCont">'.
266 '<select id="feedDlg_feedContainerSelect"
267 dojoType="dijit.form.Select" size="3">
268 <script type="dojo/method" event="onChange" args="value">
269 dijit.byId("feedDlg_feedUrl").attr("value", value);
270 </script>
271 </select>'.
272 '</div></div>';
273
274 print "<div id='feedDlg_loginContainer' style='display : none'>
275
276 <div class=\"dlgSec\">".__("Authentication")."</div>
277 <div class=\"dlgSecCont\">".
278
279 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
280 placeHolder=\"".__("Login")."\"
281 style=\"width : 10em;\"> ".
282 " <input
283 placeHolder=\"".__("Password")."\"
284 dojoType=\"dijit.form.TextBox\" type='password'
285 style=\"width : 10em;\" name='pass'\">
286 </div></div>";
287
288
289 print "<div style=\"clear : both\">
290 <input type=\"checkbox\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
291 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
292 <label for=\"feedDlg_loginCheck\">".
293 __('This feed requires authentication.')."</div>";
294
295 print "</form>";
296
297 print "<div class=\"dlgButtons\">
298 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>
299 <button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>
300 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
301 </div>";
302
303 //return;
304 }
305
306 if ($id == "feedBrowser") {
307
308 $browser_search = db_escape_string($_REQUEST["search"]);
309
310 # print "<form onsubmit='return false;' display='inline'
311 # name='feed_browser' id='feed_browser'>";
312
313 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
314 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"updateFeedBrowser\">";
315
316 print "<div dojoType=\"dijit.Toolbar\">
317 <div style='float : right'>
318 <img style='display : none'
319 id='feed_browser_spinner' src='".
320 theme_image($link, 'images/indicator_white.gif')."'>
321 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
322 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
323 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
324 </div>";
325
326 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
327 <option value='1'>" . __('Popular feeds') . "</option>
328 <option value='2'>" . __('Feed archive') . "</option>
329 </select> ";
330
331 print __("limit:");
332
333 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
334
335 foreach (array(25, 50, 100, 200) as $l) {
336 $issel = ($l == $limit) ? "selected=\"1\"" : "";
337 print "<option $issel value=\"$l\">$l</option>";
338 }
339
340 print "</select> ";
341
342 print "</div>";
343
344 $owner_uid = $_SESSION["uid"];
345
346 print "<ul class='browseFeedList' id='browseFeedList'>";
347 print_feed_browser($link, $search, 25);
348 print "</ul>";
349
350 print "<div align='center'>
351 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
352 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
353 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
354
355 }
356
357 if ($id == "search") {
358
359 print "<title>".__('Search')."</title>";
360 print "<content><![CDATA[";
361
362 print "<form id='search_form' onsubmit='return false'>";
363
364 #$active_feed_id = db_escape_string($_REQUEST["param"]);
365
366 $params = explode(":", db_escape_string($_REQUEST["param"]), 2);
367
368 $active_feed_id = sprintf("%d", $params[0]);
369 $is_cat = (bool) $params[1];
370
371 print "<div class=\"dlgSec\">".__('Look for')."</div>";
372
373 print "<div class=\"dlgSecCont\">";
374
375 if (!SPHINX_ENABLE) {
376
377 print "<input onkeypress=\"return filterCR(event, search)\"
378 name=\"query\" size=\"20\" type=\"search\" value=''>";
379
380 print " " . __('match on')." ";
381
382 $search_fields = array(
383 "title" => __("Title"),
384 "content" => __("Content"),
385 "both" => __("Title or content"));
386
387 print_select_hash("match_on", 3, $search_fields);
388 } else {
389 print "<input onkeypress=\"return filterCR(event, search)\"
390 name=\"query\" size=\"50\" type=\"search\" value=''>";
391 }
392
393
394 print "<br/>".__('Limit search to:')." ";
395
396 print "<select name=\"search_mode\">
397 <option value=\"all_feeds\">".__('All feeds')."</option>";
398
399 $feed_title = getFeedTitle($link, $active_feed_id);
400
401 if (!$is_cat) {
402 $feed_cat_title = getFeedCatTitle($link, $active_feed_id);
403 } else {
404 $feed_cat_title = getCategoryTitle($link, $active_feed_id);
405 }
406
407 if ($active_feed_id && !$is_cat) {
408 print "<option selected value=\"this_feed\">$feed_title</option>";
409 } else {
410 print "<option disabled>".__('This feed')."</option>";
411 }
412
413 if ($is_cat) {
414 $cat_preselected = "selected";
415 }
416
417 if (get_pref($link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
418 print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
419 } else {
420 //print "<option disabled>".__('This category')."</option>";
421 }
422
423 print "</select>";
424
425 print "</div>";
426
427 print "</form>";
428
429 print "<div class=\"dlgButtons\">
430 <button onclick=\"javascript:search()\">".__('Search')."</button>
431 <button onclick=\"javascript:closeInfoBox(true)\">".__('Cancel')."</button>
432 </div>";
433
434 print "]]></content>";
435
436 //return;
437
438 }
439
440 if ($id == "quickAddFilter") {
441
442 $active_feed_id = db_escape_string($_REQUEST["param"]);
443
444 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-filters\">";
445 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"quiet\" value=\"1\">";
446 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"add\">";
447
448 $result = db_query($link, "SELECT id,description
449 FROM ttrss_filter_types ORDER BY description");
450
451 $filter_types = array();
452
453 while ($line = db_fetch_assoc($result)) {
454 //array_push($filter_types, $line["description"]);
455 $filter_types[$line["id"]] = __($line["description"]);
456 }
457
458 print "<div class=\"dlgSec\">".__("Match")."</div>";
459
460 print "<div class=\"dlgSecCont\">";
461
462 print "<span id=\"filterDlg_dateModBox\" style=\"display : none\">";
463
464 $filter_params = array(
465 "before" => __("before"),
466 "after" => __("after"));
467
468 print_select_hash("filter_date_modifier", "before",
469 $filter_params, 'dojoType="dijit.form.Select"');
470
471 print "&nbsp;</span>";
472
473 print "<input dojoType=\"dijit.form.ValidationTextBox\"
474 required=\"true\" id=\"filterDlg_regExp\"
475 style=\"font-size : 16px\"
476 name=\"reg_exp\" value=\"$reg_exp\"/>";
477
478 print "<span id=\"filterDlg_dateChkBox\" style=\"display : none\">";
479 print "&nbsp;<button onclick=\"return filterDlgCheckDate()\">".
480 __('Check it')."</button>";
481 print "</span>";
482
483 print "<br/>" . __("on field") . " ";
484 print_select_hash("filter_type", 1, $filter_types,
485 'onchange="filterDlgCheckType(this)" dojoType="dijit.form.Select"');
486
487 print "<br/>";
488
489 print __("in") . " ";
490 print_feed_select($link, "feed_id", $active_feed_id,
491 'dojoType="dijit.form.FilteringSelect"');
492
493 print "</div>";
494
495 print "<div class=\"dlgSec\">".__("Perform Action")."</div>";
496
497 print "<div class=\"dlgSecCont\">";
498
499 print "<select name=\"action_id\" dojoType=\"dijit.form.Select\"
500 onchange=\"filterDlgCheckAction(this)\">";
501
502 $result = db_query($link, "SELECT id,description FROM ttrss_filter_actions
503 ORDER BY name");
504
505 while ($line = db_fetch_assoc($result)) {
506 printf("<option value='%d'>%s</option>", $line["id"], __($line["description"]));
507 }
508
509 print "</select>";
510
511 print "<span id=\"filterDlg_paramBox\" style=\"display : none\">";
512 print " " . __("with parameters:") . " ";
513 print "<input dojoType=\"dijit.form.TextBox\"
514 id=\"filterDlg_actionParam\"
515 name=\"action_param\">";
516
517 print_label_select($link, "action_param_label", $action_param,
518 'id="filterDlg_actionParamLabel" dojoType="dijit.form.Select"');
519
520 print "</span>";
521
522 print "&nbsp;"; // tiny layout hack
523
524 print "</div>";
525
526 print "<div class=\"dlgSec\">".__("Options")."</div>";
527 print "<div class=\"dlgSecCont\">";
528
529 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"enabled\" id=\"enabled\" checked=\"1\">
530 <label for=\"enabled\">".__('Enabled')."</label><br/>";
531
532 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"inverse\" id=\"inverse\">
533 <label for=\"inverse\">".__('Inverse match')."</label>";
534
535 print "</div>";
536
537 print "<div class=\"dlgButtons\">";
538
539 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').execute()\">".
540 __('Create')."</button> ";
541
542 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').hide()\">".
543 __('Cancel')."</button>";
544
545 print "</div>";
546
547 //return;
548 }
549
550 if ($id == "feedUpdateErrors") {
551
552 print "<title>".__('Update Errors')."</title>";
553 print "<content><![CDATA[";
554
555 print __("These feeds have not been updated because of errors:");
556
557 $result = db_query($link, "SELECT id,title,feed_url,last_error
558 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
559
560 print "<ul class='feedErrorsList'>";
561
562 while ($line = db_fetch_assoc($result)) {
563 print "<li><b>" . $line["title"] . "</b> (" . $line["feed_url"] . "): " .
564 "<em>" . $line["last_error"] . "</em>";
565 }
566
567 print "</ul>";
568
569 print "<div align='center'>";
570
571 print "<button onclick=\"return closeInfoBox()\">".
572 __('Close this window')."</button>";
573
574 print "]]></content>";
575
576 //return;
577 }
578
579 if ($id == "editArticleTags") {
580
581 print "<title>".__('Edit Tags')."</title>";
582 print "<content><![CDATA[";
583
584 print "<form id=\"tag_edit_form\" onsubmit='return false'>";
585
586 print __("Tags for this article (separated by commas):")."<br>";
587
588 $tags = get_article_tags($link, $param);
589
590 $tags_str = join(", ", $tags);
591
592 print "<table width='100%'>";
593
594 print "<tr><td colspan='2'><input type=\"hidden\" name=\"id\" value=\"$param\"></td></tr>";
595
596 print "<tr><td colspan='2'><textarea rows='4' class='iedit' id='tags_str'
597 name='tags_str'>$tags_str</textarea>
598 <div class=\"autocomplete\" id=\"tags_choices\"
599 style=\"display:none\"></div>
600 </td></tr>";
601
602 print "</table>";
603
604 print "</form>";
605
606 print "<div align='right'>";
607
608 print "<button onclick=\"return editTagsSave()\">".__('Save')."</button> ";
609 print "<button onclick=\"return closeInfoBox()\">".__('Cancel')."</button>";
610
611 print "]]></content>";
612
613 //return;
614 }
615
616 if ($id == "printTagCloud") {
617 print "<title>".__('Tag Cloud')."</title>";
618 print "<content><![CDATA[";
619
620 # print __("Showing most popular tags ")." (<a
621 # href='javascript:toggleTags(true)'>".__('more tags')."</a>):<br/>";
622
623 print "<div class=\"tagCloudContainer\">";
624
625 printTagCloud($link);
626
627 print "</div>";
628
629 print "<div align='center'>";
630 print "<button onclick=\"return closeInfoBox()\">".
631 __('Close this window')."</button>";
632 print "</div>";
633
634 print "]]></content>";
635
636 //return;
637 }
638
639 if ($id == "emailArticle") {
640
641 $secretkey = sha1(uniqid(rand(), true));
642
643 $_SESSION['email_secretkey'] = $secretkey;
644
645 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"secretkey\" value=\"$secretkey\">";
646 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
647 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"sendEmail\">";
648
649 $result = db_query($link, "SELECT email, full_name FROM ttrss_users WHERE
650 id = " . $_SESSION["uid"]);
651
652 $user_email = htmlspecialchars(db_fetch_result($result, 0, "email"));
653 $user_name = htmlspecialchars(db_fetch_result($result, 0, "full_name"));
654
655 if (!$user_name) $user_name = $_SESSION['name'];
656
657 $_SESSION['email_replyto'] = $user_email;
658 $_SESSION['email_fromname'] = $user_name;
659
660 require_once "lib/MiniTemplator.class.php";
661
662 $tpl = new MiniTemplator;
663 $tpl_t = new MiniTemplator;
664
665 $tpl->readTemplateFromFile("templates/email_article_template.txt");
666
667 $tpl->setVariable('USER_NAME', $_SESSION["name"]);
668 $tpl->setVariable('USER_EMAIL', $user_email);
669 $tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"]);
670
671 // $tpl->addBlock('header');
672
673 $result = db_query($link, "SELECT link, content, title
674 FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
675 id IN ($param) AND owner_uid = " . $_SESSION["uid"]);
676
677 if (db_num_rows($result) > 1) {
678 $subject = __("[Forwarded]") . " " . __("Multiple articles");
679 }
680
681 while ($line = db_fetch_assoc($result)) {
682
683 if (!$subject)
684 $subject = __("[Forwarded]") . " " . htmlspecialchars($line["title"]);
685
686 $tpl->setVariable('ARTICLE_TITLE', strip_tags($line["title"]));
687 $tpl->setVariable('ARTICLE_URL', strip_tags($line["link"]));
688
689 $tpl->addBlock('article');
690 }
691
692 $tpl->addBlock('email');
693
694 $content = "";
695 $tpl->generateOutputToString($content);
696
697 print "<table width='100%'><tr><td>";
698
699 print __('From:');
700
701 print "</td><td>";
702
703 print "<input dojoType=\"dijit.form.TextBox\" disabled=\"1\" style=\"width : 30em;\"
704 value=\"$user_name <$user_email>\">";
705
706 print "</td></tr><tr><td>";
707
708 print __('To:');
709
710 print "</td><td>";
711
712 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"true\"
713 style=\"width : 30em;\"
714 name=\"destination\" id=\"emailArticleDlg_destination\">";
715
716 print "<div class=\"autocomplete\" id=\"emailArticleDlg_dst_choices\"
717 style=\"z-index: 30; display : none\"></div>";
718
719 print "</td></tr><tr><td>";
720
721 print __('Subject:');
722
723 print "</td><td>";
724
725 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"true\"
726 style=\"width : 30em;\"
727 name=\"subject\" value=\"$subject\" id=\"subject\">";
728
729 print "</td></tr>";
730
731 print "<tr><td colspan='2'><textarea dojoType=\"dijit.form.SimpleTextarea\" style='font-size : 12px; width : 100%' rows=\"20\"
732 name='content'>$content</textarea>";
733
734 print "</td></tr></table>";
735
736 print "<div class='dlgButtons'>";
737 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('emailArticleDlg').execute()\">".__('Send e-mail')."</button> ";
738 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('emailArticleDlg').hide()\">".__('Cancel')."</button>";
739 print "</div>";
740
741 //return;
742 }
743
744 if ($id == "generatedFeed") {
745
746 print "<title>".__('View as RSS')."</title>";
747 print "<content><![CDATA[";
748
749 $params = explode(":", $param, 3);
750 $feed_id = db_escape_string($params[0]);
751 $is_cat = (bool) $params[1];
752
753 $key = get_feed_access_key($link, $feed_id, $is_cat);
754
755 $url_path = htmlspecialchars($params[2]) . "&key=" . $key;
756
757 print __("You can view this feed as RSS using the following URL:");
758
759 print "<div class=\"tagCloudContainer\">";
760 print "<a id='gen_feed_url' href='$url_path' target='_blank'>$url_path</a>";
761 print "</div>";
762
763 print "<div align='center'>";
764
765 print "<button dojoType=\"dijit.form.Button\" onclick=\"return genUrlChangeKey('$feed_id', '$is_cat')\">".
766 __('Generate new URL')."</button> ";
767
768 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
769 __('Close this window')."</button>";
770
771 print "</div>";
772 print "]]></content>";
773
774 //return;
775 }
776
777 print "</dlg>";
778 }
779 ?>