Completed
Branch master (ddc2b8)
by Michael
02:46
created

sbookmarks.php (46 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/**
4
 * Module: XoopsTube
5
 *
6
 * You may not change or alter any portion of this comment or credits
7
 * of supporting developers from this source code or any supporting source code
8
 * which is considered copyrighted (c) material of the original comment or credit authors.
9
 *
10
 * PHP version 5
11
 *
12
 * @category        Module
13
 * @package         Xoopstube
14
 * @author          XOOPS Development Team
15
 * @copyright       2001-2016 XOOPS Project (http://xoops.org)
16
 * @license         GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
17
 * @link            http://xoops.org/
18
 * @since           1.0.6
19
 *
20
 * @param $lid
21
 *
22
 * @return string
23
 */
24
25
function getSocialBookmarks($lid)
0 ignored issues
show
getSocialBookmarks uses the super-global variable $GLOBALS which is generally not recommended.

Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable:

// Bad
class Router
{
    public function generate($path)
    {
        return $_SERVER['HOST'].$path;
    }
}

// Better
class Router
{
    private $host;

    public function __construct($host)
    {
        $this->host = $host;
    }

    public function generate($path)
    {
        return $this->host.$path;
    }
}

class Controller
{
    public function myAction(Request $request)
    {
        // Instead of
        $page = isset($_GET['page']) ? intval($_GET['page']) : 1;

        // Better (assuming you use the Symfony2 request)
        $page = $request->query->get('page', 1);
    }
}
Loading history...
26
{
27
    global $xoopsModule, $xtubemyts;
0 ignored issues
show
Compatibility Best Practice introduced by
Use of global functionality is not recommended; it makes your code harder to test, and less reusable.

Instead of relying on global state, we recommend one of these alternatives:

1. Pass all data via parameters

function myFunction($a, $b) {
    // Do something
}

2. Create a class that maintains your state

class MyClass {
    private $a;
    private $b;

    public function __construct($a, $b) {
        $this->a = $a;
        $this->b = $b;
    }

    public function myFunction() {
        // Do something
    }
}
Loading history...
28
29
    $sbmark_arr          = $GLOBALS['xoopsDB']->fetchArray($GLOBALS['xoopsDB']->query('SELECT lid, title FROM ' . $GLOBALS['xoopsDB']->prefix('xoopstube_videos') . ' WHERE lid=' . (int)$lid));
30
    $sbmark_arr['title'] = $xtubemyts->htmlSpecialCharsStrip($sbmark_arr['title']);
31
    $sbmark_arr['link']  = XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/singlevideo.php?lid=' . (int)$lid;
32
33
    //Definitions for social bookmarks
34
35
    //Backflip
36
    $sbmarks['blackflip'] =
0 ignored issues
show
Coding Style Comprehensibility introduced by
$sbmarks was never initialized. Although not strictly required by PHP, it is generally a good practice to add $sbmarks = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
37
        '<a href="http://www.backflip.com/add_page_pop.ihtml?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/backflip.png" align="middle" title="'
38
        . _MD_XOOPSTUBE_ADDTO . 'BackFlip" alt="' . _MD_XOOPSTUBE_ADDTO . 'BackFlip"></a>';
39
40
    //Bibsonomy
41
    $sbmark['bibsonomy'] = '<a href="http://www.bibsonomy.org/ShowBookmarkEntry?c=b&jump=yes&url=' . $sbmark_arr['link'] . '&description=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
0 ignored issues
show
Coding Style Comprehensibility introduced by
$sbmark was never initialized. Although not strictly required by PHP, it is generally a good practice to add $sbmark = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
42
                           . '/assets/images/sbookmarks/bibsonomy.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Bibsonomy alt="' . _MD_XOOPSTUBE_ADDTO . 'Bibsonomy"></a>';
43
44
    //BlinkList
45
    $sbmarks['blinklist'] = '<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Quick=true&url=' . $sbmark_arr['link'] . '&Title=' . $sbmark_arr['title'] . '&Pop=yes" target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
46
                            . '/assets/images/sbookmarks/blinklist.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'BlinkList" alt="' . _MD_XOOPSTUBE_ADDTO . 'BlinkList"></a>';
47
48
    //Blogmark
49
    $sbmark['blogmark'] =
50
        '<a href="http://blogmarks.net/my/new.php?title=' . $sbmark_arr['title'] . '&url=' . $sbmark_arr['link'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/blogmarks.png" align="middle" title="'
51
        . _MD_XOOPSTUBE_ADDTO . 'BlogMarks" alt="' . _MD_XOOPSTUBE_ADDTO . 'BlogMarks" /></a>';
52
53
    //CiteUlike
54
    $sbmark['citeulike'] =
55
        '<a href="http://www.citeulike.org/posturl?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/citeulike.png" align="middle" title="'
56
        . _MD_XOOPSTUBE_ADDTO . 'CiteUlike" alt="' . _MD_XOOPSTUBE_ADDTO . 'CiteUlike" /></a>';
57
58
    //Connotea
59
    $sbmarks['connotea'] =
60
        '<a href="http://www.connotea.org/add?continue=return&uri=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/connotea.png" align="middle" title="'
61
        . _MD_XOOPSTUBE_ADDTO . 'Connotea" alt="' . _MD_XOOPSTUBE_ADDTO . 'Connotea" /></a>';
62
63
    //del.icio.us
64
    $sbmarks['delicio'] =
65
        '<a href="http://del.icio.us/post?v=4&noui&jump=close&url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/del.png" align="middle" title="'
66
        . _MD_XOOPSTUBE_ADDTO . 'del.icio.us" alt="' . _MD_XOOPSTUBE_ADDTO . 'del.icio.us" /></a>';
67
68
    //Digg
69
    $sbmarks['digg'] = '<a href="http://digg.com/submit?phase=2&url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/digg.png" align="middle" title="'
70
                       . _MD_XOOPSTUBE_ADDTO . 'Digg" alt="' . _MD_XOOPSTUBE_ADDTO . 'Digg"></a>';
71
72
    //Diigo
73
    $sbmarks['diigo'] = '<a href="http://www.diigo.com/post?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/diigo.png" align="middle" title="'
74
                        . _MD_XOOPSTUBE_ADDTO . 'Diigo" alt="' . _MD_XOOPSTUBE_ADDTO . 'Diigo"></a>';
75
76
    //DZone
77
    $sbmarks['dzone'] =
78
        '<a href="http://www.dzone.com/links/add.html?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/dzone.png" align="middle" title="'
79
        . _MD_XOOPSTUBE_ADDTO . 'DZone" alt="' . _MD_XOOPSTUBE_ADDTO . 'DZone"></a>';
80
81
    //Earthlink
82
    $sbmarks['earthlink'] = '<a href="http://myfavorites.earthlink.net/my/add_favorite?v=1&url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
83
                            . '/assets/images/sbookmarks/earthlink.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'EarthLink MyFavorites" alt="' . _MD_XOOPSTUBE_ADDTO . 'EarthLink MyFavorites"></a>';
84
85
    //EatMyHamster
86
    $sbmarks['eatmyhamster'] =
87
        '<a href="http://www.eatmyhamster.com/post?u=' . $sbmark_arr['link'] . '&h=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/eatmyhamster.png" align="middle" title="'
88
        . _MD_XOOPSTUBE_ADDTO . 'EatMyHamster" alt="' . _MD_XOOPSTUBE_ADDTO . 'EatMyHamster"></a>';
89
90
    //FaceBook
91
    $sbmarks['facebook'] =
92
        '<a href="http://www.facebook.com/sharer.php?u=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"> <img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/facebook.png" align="middle" title="'
93
        . _MD_XOOPSTUBE_ADDTO . 'Facebook" alt="' . _MD_XOOPSTUBE_ADDTO . 'Facebook"></a>';
94
95
    //Fantacular
96
    $sbmarks['fantacular'] =
97
        '<a href="http://fantacular.com/add.asp?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/fantacular.png" align="middle" title="'
98
        . _MD_XOOPSTUBE_ADDTO . 'Fantacular" alt="' . _MD_XOOPSTUBE_ADDTO . 'Fantacular"></a>';
99
100
    //Fark
101
    $sbmarks['fark'] =
102
        '<a href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=' . $sbmark_arr['link'] . '&new_comment=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/fark.png" align="middle" title="'
103
        . _MD_XOOPSTUBE_ADDTO . 'Fark" alt="' . _MD_XOOPSTUBE_ADDTO . 'Fark"></a>';
104
105
    //FeedMarker
106
    $sbmarks['feedmarker'] = '<a href="http://www.feedmarker.com/admin.php?do=bookmarklet_mark&url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
107
                             . '/assets/images/sbookmarks/feedmarker.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'FeedMarker" alt="' . _MD_XOOPSTUBE_ADDTO . 'FeedMarker"></a>';
108
109
    //FeedMeLinks
110
    $sbmarks['feedmelinks'] = '<a href="http://feedmelinks.com/categorize?from=toolbar&op=submit&name=' . $sbmark_arr['title'] . '&url=' . $sbmark_arr['link'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
111
                              . '/assets/images/sbookmarks/feedmelinks.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'FeedMeLinks" alt="' . _MD_XOOPSTUBE_ADDTO . 'FeedMeLinks"></a>';
112
113
    //Furl
114
    $sbmarks['furl'] =
115
        '<a href="http://www.furl.net/storeIt.jsp?t=' . $sbmark_arr['title'] . '&u=' . $sbmark_arr['link'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/furl.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO
116
        . 'Furk" alt="' . _MD_XOOPSTUBE_ADDTO . 'Furl"></a>';
117
118
    //Google
119
    $sbmarks['google'] = '<a href="http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
120
                         . '/assets/images/sbookmarks/google.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Google" alt="' . _MD_XOOPSTUBE_ADDTO . 'Google"></a>';
121
122
    //Gravee
123
    $sbmarks['gravee'] =
124
        '<a href="http://www.gravee.com/account/bookmarkpop?u=' . $sbmark_arr['link'] . '&t=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/gravee.png" align="middle" title="'
125
        . _MD_XOOPSTUBE_ADDTO . 'Gravee" alt="' . _MD_XOOPSTUBE_ADDTO . 'Gravee"></a>';
126
127
    //igooi
128
    $sbmarks['igooi'] = '<a href="http://www.igooi.com/addnewitem.aspx?self=1&noui=yes&jump=close&url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
129
                        . '/assets/images/sbookmarks/igooi.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'igooi" alt="' . _MD_XOOPSTUBE_ADDTO . 'igooi"></a>';
130
131
    //iTalkNews
132
    $sbmarks['italknews'] = '<a href="http://italknews.com/member/write_link.php?content=' . $sbmark_arr['link'] . '&headline=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
133
                            . '/assets/images/sbookmarks/italknews.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'iTalkNews" alt="' . _MD_XOOPSTUBE_ADDTO . 'iTalkNews"></a>';
134
135
    //Jookster
136
    $sbmarks['jookster'] =
137
        '<a href="http://www.jookster.com/JookThis.aspx?url=' . $sbmark_arr['link'] . '"' . 'target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/jookster.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Jookster" alt="'
138
        . _MD_XOOPSTUBE_ADDTO . 'Jookster"></a>';
139
140
    //Kinja
141
    $sbmarks['kinja'] = '<a href="http://kinja.com/id.knj?url=' . $sbmark_arr['link'] . '"' . 'target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/kinja.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Kinja" alt="'
142
                        . _MD_XOOPSTUBE_ADDTO . 'Kinja"></a>';
143
144
    //Linkagogo
145
    $sbmarks['linkagogo'] =
146
        '<a href="http://www.linkagogo.com/go/AddNoPopup?title=' . $sbmark_arr['title'] . '&url=' . $sbmark_arr['link'] . '"' . 'target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/linkagogo.png" align="middle" title="'
147
        . _MD_XOOPSTUBE_ADDTO . 'Linkagogo" alt="' . _MD_XOOPSTUBE_ADDTO . 'Linkagogo"></a>';
148
149
    //LinkRoll
150
    $sbmarks['linkroll'] =
151
        '<a href="http://linkroll.com/insert.php?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/linkroll.png" align="middle" title="'
152
        . _MD_XOOPSTUBE_ADDTO . 'LinkRoll" alt="' . _MD_XOOPSTUBE_ADDTO . 'LinkRoll"></a>';
153
154
    //linuxquestions.org
155
    $sbmarks['linuxquestions'] = '<a href="http://bookmarks.linuxquestions.org/linux/post?uri=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '&when_done=go_back"' . 'target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
156
                                 . '/assets/images/sbookmarks/linuxquestions.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'linuxquestions.org" alt="' . _MD_XOOPSTUBE_ADDTO . 'linuxquestions.org"></a>';
157
158
    //LookMarks
159
    $sbmarks['lookmarks'] =
160
        '<a href="http://www.lookmarks.com/AddLinkFrame.aspx?url=' . $sbmark_arr['link'] . '&Title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/lookmarks.png" align="middle" title="'
161
        . _MD_XOOPSTUBE_ADDTO . 'LookMarks" alt="' . _MD_XOOPSTUBE_ADDTO . 'LookMarks"></a>';
162
163
    //Lycos
164
    $sbmarks['lycos'] =
165
        '<a href="http://iq.lycos.co.uk/lili/my/add?url=' . $sbmark_arr['link'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/lycos.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Lycos" alt="'
166
        . _MD_XOOPSTUBE_ADDTO . 'Lycos"></a>';
167
168
    //Windows Live
169
    $sbmarks['live'] = '<a href="https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&title=' . $sbmark_arr['title'] . '&url=' . $sbmark_arr['link'] . '&top=1' . '"' . 'target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
170
                       . '/assets/images/sbookmarks/windows_live.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Windows Live" alt="' . _MD_XOOPSTUBE_ADDTO . 'Windows Live"></a>';
171
172
    //Magnolia
173
    $sbmarks['magnolia'] =
174
        '<a href="http://ma.gnolia.com/bookmarklet/add?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/magnolia.png" align="middle" title="'
175
        . _MD_XOOPSTUBE_ADDTO . 'Ma.gnolia" alt="' . _MD_XOOPSTUBE_ADDTO . 'Ma.gnolia"></a>';
176
177
    //Markabboo
178
    $sbmarks['markabboo'] =
179
        '<a href="http://www.markaboo.com/resources/new?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/markabboo.png" align="middle" title="'
180
        . _MD_XOOPSTUBE_ADDTO . 'Markabboo" alt="' . _MD_XOOPSTUBE_ADDTO . 'Markabboo"></a>';
181
182
    //Netscape
183
    $sbmarks['netscape'] =
184
        '<a href="http://www.netscape.com/submit/?U=' . $sbmark_arr['link'] . '&T=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/netscape.png" align="middle" title="'
185
        . _MD_XOOPSTUBE_ADDTO . 'Netscape" alt="' . _MD_XOOPSTUBE_ADDTO . 'Netscape"></a>';
186
187
    //Netvouz
188
    $sbmarks['netvouz'] = '<a href="http://www.netvouz.com/action/submitBookmark?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '&popup=no"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
189
                          . '/assets/images/sbookmarks/netvouz.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Netvouz" alt="' . _MD_XOOPSTUBE_ADDTO . 'Netvouz"></a>';
190
191
    //Newsvine
192
    $sbmarks['newsvine'] =
193
        '<a href="http://www.newsvine.com/_tools/seed&save?u=' . $sbmark_arr['link'] . '&h=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/newsvine.png" align="middle" title="'
194
        . _MD_XOOPSTUBE_ADDTO . 'Newsvine" alt="' . _MD_XOOPSTUBE_ADDTO . 'Newsvine"></a>';
195
196
    //Ning
197
    $sbmarks['ning'] =
198
        '<a href="http://bookmarks.ning.com/addItem.php?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/ning.png" align="middle" title="'
199
        . _MD_XOOPSTUBE_ADDTO . 'Ning" alt="' . _MD_XOOPSTUBE_ADDTO . 'Ning"></a>';
200
201
    //NowPublic
202
    $sbmarks['nowpublic'] = '<a href="http://view.nowpublic.com/?src=' . $sbmark_arr['link'] . '&t=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/nowpublic.png" align="middle" title="'
203
                            . _MD_XOOPSTUBE_ADDTO . 'NowPublic" alt="' . _MD_XOOPSTUBE_ADDTO . 'NowPublic"></a>';
204
205
    //RawSugar
206
    $sbmarks['rawsugar'] =
207
        '<a href="http://www.rawsugar.com/pages/tagger.faces?turl=' . $sbmark_arr['link'] . '&tttl=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/rawsugar.png" align="middle" title="'
208
        . _MD_XOOPSTUBE_ADDTO . 'RawSugar" alt="' . _MD_XOOPSTUBE_ADDTO . 'RawSugar"></a>';
209
210
    //Reddit
211
    $sbmarks['reddit'] = '<a href="http://reddit.com/submit?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/reddit.png" align="middle" title="'
212
                         . _MD_XOOPSTUBE_ADDTO . 'reddit" alt="' . _MD_XOOPSTUBE_ADDTO . 'reddit"></a>';
213
214
    //Riffs
215
    $sbmarks['riffs'] =
216
        '<a href="http://www.riffs.com/item.cgi?section=init_url&url=' . $sbmark_arr['link'] . '&name=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/riffs.png" align="middle" title="'
217
        . _MD_XOOPSTUBE_ADDTO . 'Riffs" alt="' . _MD_XOOPSTUBE_ADDTO . 'Riffs"></a>';
218
219
    //Rojo
220
    $sbmarks['rojo'] = '<a href="http://www.rojo.com/submit/?title=' . $sbmark_arr['title'] . '&url=' . $sbmark_arr['link'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/rojo.png" align="middle" title="'
221
                       . _MD_XOOPSTUBE_ADDTO . 'Rojo" alt="' . _MD_XOOPSTUBE_ADDTO . 'Rojo"></a>';
222
223
    //Shadows
224
    $sbmarks['shadow'] =
225
        '<a href="http://www.shadows.com/features/tcr.htm?title=' . $sbmark_arr['title'] . '&url=' . $sbmark_arr['link'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/shadows.png" align="middle" title="'
226
        . _MD_XOOPSTUBE_ADDTO . 'Shadows" alt="' . _MD_XOOPSTUBE_ADDTO . 'Shadows"></a>';
227
228
    //Simpy
229
    //    $sbmarks['simpy']
230
    //        = '<a href="http://simpy.com/simpy/LinkAdd.do?title=' . $sbmark_arr['title'] . '&href=' . $sbmark_arr['link']
0 ignored issues
show
Unused Code Comprehensibility introduced by
46% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
231
    //          . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
232
    //          . '/assets/images/sbookmarks/simpy.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Simpy" alt="'
233
    //          . _MD_XOOPSTUBE_ADDTO . 'Simpy"></a>';
234
235
    //Spurl
236
    //    $sbmarks['spurl']
237
    //        = '<a href="http://www.spurl.net/spurl.php?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"'
0 ignored issues
show
Unused Code Comprehensibility introduced by
43% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
238
    //          . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
239
    //          . '/assets/images/sbookmarks/spurl.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Spurl" alt="'
240
    //          . _MD_XOOPSTUBE_ADDTO . 'Spurl"></a>';
241
242
    //Squidoo
243
    $sbmarks['squidoo'] =
244
        '<a href="http://www.squidoo.com/lensmaster/bookmark?' . $sbmark_arr['link'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/squidoo.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Squidoo" alt="'
245
        . _MD_XOOPSTUBE_ADDTO . 'Squidoo"></a>';
246
247
    //StumbleUpon
248
    $sbmarks['stumble'] =
249
        '<a href="http://www.stumbleupon.com/submit?url=' . $sbmark_arr['link'] . '&title=' . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/stumbleupon.png" align="middle" title="'
250
        . _MD_XOOPSTUBE_ADDTO . 'StumbleUpon" alt="' . _MD_XOOPSTUBE_ADDTO . 'StumbleUpon"></a>';
251
252
    //tagtooga
253
    $sbmarks['tagtooga'] = '<a href="http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&b=fx&title=' . $sbmark_arr['title'] . '&url=' . $sbmark_arr['link'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
254
                           . '/assets/images/sbookmarks/tagtooga.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'tagtooga" alt="' . _MD_XOOPSTUBE_ADDTO . 'tagtooga"></a>';
255
256
    //Technorati
257
    $sbmarks['techno'] =
258
        '<a="http://www.technorati.com/faves?add=' . $sbmark_arr['link'] . $sbmark_arr['title'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/technorati.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO
259
        . 'Technorati" alt="' . _MD_XOOPSTUBE_ADDTO . 'Technorati"></a>';
260
261
    //Wink
262
    //    $sbmarks['wink']
263
    //        = '<a href="http://www.wink.com/_/tag?url=' . $sbmark_arr['link'] . '&doctitle=' . $sbmark_arr['title'] . '"'
0 ignored issues
show
Unused Code Comprehensibility introduced by
43% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
264
    //          . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname')
265
    //          . '/assets/images/sbookmarks/wink.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Wink" alt="'
266
    //          . _MD_XOOPSTUBE_ADDTO . 'Wink"></a>';
267
268
    // Yahoo
269
    $sbmarks['yahoo'] =
270
        '<a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=' . $sbmark_arr['title'] . '&u=' . $sbmark_arr['link'] . '"' . ' target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/yahoo.png" align="middle" title="'
271
        . _MD_XOOPSTUBE_ADDTO . 'Yahoo MyWeb" alt="' . _MD_XOOPSTUBE_ADDTO . 'Yahoo MyWeb"></a>';
272
273
    //Information
274
    $sbmarks['info'] =
275
        '<a href="http://en.wikipedia.org/wiki/Social_bookmarking" target="_blank"><img border="0" src="' . XOOPS_URL . '/modules/' . $xoopsModule->getVar('dirname') . '/assets/images/sbookmarks/what.png" align="middle" title="' . _MD_XOOPSTUBE_ADDTO . 'Information" alt="' . _MD_XOOPSTUBE_ADDTO
276
        . 'Information"></a>';
277
278
    // Make list of selected social bookmarks
279
    // Comment out those social bookmarks which should not be visible
280
281
    $sbmarks['sbmarks'] = //$sbmarks['blackflip'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
282
        //$sbmark['bibsonomy'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
283
        $sbmarks['blinklist'] . ' ' . //$sbmark['blogmark'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
284
        //$sbmark['citeulike'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
285
        //$sbmarks['connotea'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
286
        $sbmarks['delicio'] . ' ' . $sbmarks['digg'] . ' ' . //$sbmarks['diigo'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
287
        //$sbmarks['dzone'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
288
        //$sbmarks['earthlink'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
289
        //$sbmarks['eatmyhamster'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
290
        $sbmarks['facebook'] . ' ' . //$sbmarks['fantacular'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
291
        //$sbmarks['fark'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
292
        //$sbmarks['feedmarker'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
293
        //$sbmarks['feedmelinks'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
294
        $sbmarks['furl'] . ' ' . $sbmarks['google'] . ' ' . //$sbmarks['gravee'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
295
        //$sbmarks['igooi'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
296
        //$sbmarks['italknews'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
297
        //$sbmarks['jookster'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
298
        //$sbmarks['kinja'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
299
        //$sbmarks['linkagogo'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
300
        //$sbmarks['linkroll'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
301
        //$sbmarks['linuxquestions'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
302
        //$sbmarks['live'] . " " .         <==== Don't use doesn't work properly
303
        //$sbmarks['lookmarks'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
304
        //$sbmarks['lycos'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
305
        //$sbmarks['magnolia'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
306
        //$sbmarks['markabboo'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
307
        $sbmarks['netscape'] . ' ' . //$sbmarks['netvouz'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
308
        //$sbmarks['newsvine'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
309
        //$sbmarks['ning'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
310
        //$sbmarks['nowpublic'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
311
        //$sbmarks['rawsugar'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
312
        $sbmarks['reddit'] . ' ' . //$sbmarks['riffs'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
313
        //$sbmarks['rojo'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
314
        //$sbmarks['shadow'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
315
        //        $sbmarks['simpy'] . " "
0 ignored issues
show
Unused Code Comprehensibility introduced by
56% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
316
        //        . $sbmarks['spurl'] . " "
0 ignored issues
show
Unused Code Comprehensibility introduced by
46% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
317
        //$sbmarks['squidoo'] . " "
0 ignored issues
show
Unused Code Comprehensibility introduced by
63% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
318
        $sbmarks['stumble'] . ' ' . //$sbmarks['tagtooga'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
319
        //$sbmarks['techno'] . " " .
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
320
        //        $sbmarks['wink'] . " ".
0 ignored issues
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
321
        $sbmarks['yahoo'] . ' ' . $sbmarks['info'];
322
323
    return $sbmarks['sbmarks'];
324
}
325