]> git.mxchange.org Git - friendica.git/blob - include/items.php
Update getShareOpeningTag::getShareOpeningTag method signature
[friendica.git] / include / items.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 /**
23  * @deprecated since 2020.06
24  * @see \Friendica\Content\PageInfo::getFooterFromData
25  */
26 function add_page_info_data(array $data, $no_photos = false)
27 {
28         return "\n" . \Friendica\Content\PageInfo::getFooterFromData($data, $no_photos);
29 }
30
31 /**
32  * @deprecated since 2020.06
33  * @see \Friendica\Content\PageInfo::queryUrl
34  */
35 function query_page_info($url, $photo = "", $keywords = false, $keyword_denylist = "")
36 {
37         return \Friendica\Content\PageInfo::queryUrl($url, $photo, $keywords, $keyword_denylist);
38 }
39
40 /**
41  * @deprecated since 2020.06
42  * @see \Friendica\Content\PageInfo::getTagsFromUrl()
43  */
44 function get_page_keywords($url, $photo = "", $keywords = false, $keyword_denylist = "")
45 {
46         return $keywords ? \Friendica\Content\PageInfo::getTagsFromUrl($url, $photo, $keyword_denylist) : [];
47 }
48
49 /**
50  * @deprecated since 2020.06
51  * @see \Friendica\Content\PageInfo::getFooterFromUrl
52  */
53 function add_page_info($url, $no_photos = false, $photo = "", $keywords = false, $keyword_denylist = "")
54 {
55         return "\n" . \Friendica\Content\PageInfo::getFooterFromUrl($url, $no_photos, $photo, $keywords, $keyword_denylist);
56 }
57
58 /**
59  * @deprecated since 2020.06
60  * @see \Friendica\Content\PageInfo::appendToBody
61  */
62 function add_page_info_to_body($body, $texturl = false, $no_photos = false)
63 {
64         return \Friendica\Content\PageInfo::appendToBody($body, $texturl, $no_photos);
65 }
66
67 /**
68  * @deprecated since 2020.06
69  * @see \Friendica\Protocol\Feed::consume
70  */
71 function consume_feed($xml, array $importer, array $contact, &$hub)
72 {
73         \Friendica\Protocol\Feed::consume($xml, $importer, $contact, $hub);
74 }