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