These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | error_reporting(-1); |
||
3 | include 'php/jodel-web.php'; |
||
4 | |||
5 | $config = parse_ini_file('config/config.ini.php'); |
||
6 | |||
7 | $location = new Location(); |
||
8 | $location->setLat($config['default_lat']); |
||
9 | $location->setLng($config['default_lng']); |
||
10 | $location->setCityName($config['default_location']); |
||
11 | |||
12 | $accessToken; |
||
13 | $accessToken_forId1; |
||
14 | $deviceUid; |
||
15 | $isSpider = FALSE; |
||
16 | |||
17 | //What is dude doing with my Server? |
||
18 | if($_SERVER['REMOTE_ADDR'] == '94.231.103.52') |
||
19 | { |
||
20 | echo('You are flooting my Server! Pls enable Cookies in your script and contact me: [email protected]'); |
||
21 | die(); |
||
22 | } |
||
23 | |||
24 | //Check if it's a Spider or Google Bot |
||
25 | if(botDeviceUidIsSet($config) && isUserBot()) |
||
26 | { |
||
27 | $isSpider = TRUE; |
||
28 | error_log('Spider or Bot checked in!'); |
||
29 | |||
30 | $deviceUid = $config['botDeviceUid']; |
||
31 | $config = NULL; |
||
0 ignored issues
–
show
|
|||
32 | } |
||
33 | else |
||
34 | { |
||
35 | $config = NULL; |
||
36 | if(!isset($_COOKIE['JodelDeviceId']) || !isDeviceUidInDatabase($_COOKIE['JodelDeviceId'])) |
||
37 | { |
||
38 | $deviceUid = createAccount(); |
||
39 | setcookie('JodelDeviceId', $deviceUid, time()+60*60*24*365*10); |
||
40 | error_log('Created account with JodelDeviceId:' . $deviceUid . ' for [' . $_SERVER ['HTTP_USER_AGENT'] . ']'); |
||
41 | |||
42 | } |
||
43 | else |
||
44 | { |
||
45 | $deviceUid = $_COOKIE['JodelDeviceId']; |
||
46 | } |
||
47 | } |
||
48 | |||
49 | $location = getLocationByDeviceUid($deviceUid); |
||
0 ignored issues
–
show
Equals sign not aligned with surrounding assignments; expected 10 spaces but found 1 space
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line. To visualize $a = "a";
$ab = "ab";
$abc = "abc";
will produce issues in the first and second line, while this second example $a = "a";
$ab = "ab";
$abc = "abc";
will produce no issues. ![]() |
|||
50 | $newPositionStatus = $location->getCityName(); |
||
51 | $accessToken = isTokenFreshByDeviceUid($location, $deviceUid); |
||
0 ignored issues
–
show
Equals sign not aligned with surrounding assignments; expected 7 spaces but found 1 space
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line. To visualize $a = "a";
$ab = "ab";
$abc = "abc";
will produce issues in the first and second line, while this second example $a = "a";
$ab = "ab";
$abc = "abc";
will produce no issues. ![]() |
|||
52 | //Acc is fresh. token and location is set |
||
53 | |||
54 | $accessToken_forId1 = isTokenFresh($location); |
||
55 | $deviceUid_forId1 = getDeviceUidByAccessToken($accessToken_forId1); |
||
0 ignored issues
–
show
Equals sign not aligned with surrounding assignments; expected 3 spaces but found 1 space
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line. To visualize $a = "a";
$ab = "ab";
$abc = "abc";
will produce issues in the first and second line, while this second example $a = "a";
$ab = "ab";
$abc = "abc";
will produce no issues. ![]() |
|||
56 | |||
57 | //Set View |
||
58 | View Code Duplication | if(isset($_GET['view'])) |
|
0 ignored issues
–
show
This code seems to be duplicated across your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation. You can also find more detailed suggestions in the “Code” section of your repository. ![]() |
|||
59 | { |
||
60 | switch ($_GET['view']) { |
||
61 | case 'comment': |
||
62 | $view = 'comment'; |
||
63 | break; |
||
64 | |||
65 | case 'upVote': |
||
66 | $view = 'upVote'; |
||
67 | break; |
||
68 | |||
69 | default: |
||
70 | $view = 'time'; |
||
71 | break; |
||
72 | } |
||
73 | } |
||
74 | else |
||
75 | { |
||
76 | $view = 'time'; |
||
77 | } |
||
78 | |||
79 | //Verify Account |
||
80 | if(isset($_GET['solution']) && isset($_GET['key'])) |
||
81 | { |
||
82 | verifyCaptcha($accessToken_forId1); |
||
83 | } |
||
84 | |||
85 | //Set Location |
||
86 | if(isset($_GET['city'])) |
||
87 | { |
||
88 | $newPositionStatus = setLocation($accessToken, $deviceUid); |
||
89 | } |
||
90 | |||
91 | //Vote |
||
92 | if(isset($_GET['vote']) && isset($_GET['postID'])) |
||
93 | { |
||
94 | /* |
||
0 ignored issues
–
show
Unused Code
Comprehensibility
introduced
by
61% 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. ![]() |
|||
95 | if(!deviceUidHasVotedThisPostId($deviceUid_forId1, $_GET['postID'])) |
||
96 | { |
||
97 | if($_GET['vote'] == "up") |
||
98 | { |
||
99 | $accountCreator = new Upvote(); |
||
100 | } |
||
101 | else if($_GET['vote'] == "down") |
||
102 | { |
||
103 | $accountCreator = new Downvote(); |
||
104 | } |
||
105 | $accountCreator->setAccessToken($accessToken_forId1); |
||
106 | $accountCreator->postId = htmlspecialchars($_GET['postID']); |
||
107 | $data = $accountCreator->execute(); |
||
108 | */ |
||
109 | votePostId($deviceUid_forId1, $accessToken_forId1); |
||
110 | } |
||
111 | |||
112 | //SendJodel |
||
113 | if(isset($_POST['message'])) |
||
114 | { |
||
115 | sendJodel($location, $accessToken_forId1); |
||
116 | } |
||
117 | |||
118 | |||
119 | |||
120 | $posts; |
||
121 | //Is Channel or City |
||
122 | if(isset($_GET['city']) && substr($_GET['city'], 0, 1) === '#') |
||
123 | { |
||
124 | $channel = substr($_GET['city'], 1); |
||
125 | |||
126 | $accountCreator = new GetChannel(); |
||
127 | $accountCreator->setAccessToken($accessToken); |
||
128 | $accountCreator->channel = $channel; |
||
129 | $posts = $accountCreator->execute(); |
||
0 ignored issues
–
show
Equals sign not aligned with surrounding assignments; expected 19 spaces but found 1 space
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line. To visualize $a = "a";
$ab = "ab";
$abc = "abc";
will produce issues in the first and second line, while this second example $a = "a";
$ab = "ab";
$abc = "abc";
will produce no issues. ![]() |
|||
130 | if(array_key_exists('recent', $posts)) |
||
131 | { |
||
132 | $posts = $posts['recent']; |
||
133 | View Code Duplication | if(!array_key_exists(0, $posts)) |
|
0 ignored issues
–
show
This code seems to be duplicated across your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation. You can also find more detailed suggestions in the “Code” section of your repository. ![]() |
|||
134 | { |
||
135 | $posts[0] = array( |
||
136 | "post_id" => "0", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
post_id does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
0 does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
137 | "discovered_by" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
discovered_by does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
138 | "message" => "Not found", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
message does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
Not found does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
139 | "created_at" => "2017-02-11T16:44:50.385Z", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
created_at does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
2017-02-11T16:44:50.385Z does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
140 | "updated_at" => "2017-02-11T16:44:50.385Z", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
updated_at does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
2017-02-11T16:44:50.385Z does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
141 | "pin_count" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
pin_count does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
142 | "color" => "FFBA00", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
color does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
FFBA00 does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
143 | "got_thanks" => FALSE, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
got_thanks does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
144 | "post_own" => "friend", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
post_own does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
friend does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
145 | "discovered" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
discovered does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
146 | "distance" => 9, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
distance does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
147 | "vote_count" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
vote_count does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
148 | "location" => |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
location does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
149 | array("name" => "Berlin", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
name does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
Berlin does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
150 | "loc_coordinates" => |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
loc_coordinates does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
151 | array( |
||
152 | "lat" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
lat does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
153 | "lng" => 0 |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
lng does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
154 | ), |
||
155 | "loc_accuracy" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
loc_accuracy does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
156 | "country" => "", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
country does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
157 | "city" => "", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
city does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
158 | ), |
||
159 | "tags" => |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
tags does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
160 | array(), |
||
161 | "user_handle" => "0" |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
user_handle does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
0 does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
162 | ); |
||
163 | } |
||
164 | } |
||
165 | View Code Duplication | else |
|
0 ignored issues
–
show
This code seems to be duplicated across your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation. You can also find more detailed suggestions in the “Code” section of your repository. ![]() |
|||
166 | { |
||
167 | $posts = array(); |
||
0 ignored issues
–
show
Equals sign not aligned with surrounding assignments; expected 4 spaces but found 1 space
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line. To visualize $a = "a";
$ab = "ab";
$abc = "abc";
will produce issues in the first and second line, while this second example $a = "a";
$ab = "ab";
$abc = "abc";
will produce no issues. ![]() |
|||
168 | $posts[0] = |
||
169 | array( |
||
170 | "post_id" => "0", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
post_id does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
0 does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
171 | "discovered_by" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
discovered_by does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
172 | "message" => "Bad Request", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
message does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
Bad Request does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
173 | "created_at" => "2017-02-11T16:44:50.385Z", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
created_at does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
2017-02-11T16:44:50.385Z does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
174 | "updated_at" => "2017-02-11T16:44:50.385Z", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
updated_at does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
2017-02-11T16:44:50.385Z does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
175 | "pin_count" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
pin_count does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
176 | "color" => "FFBA00", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
color does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
FFBA00 does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
177 | "got_thanks" => FALSE, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
got_thanks does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
178 | "post_own" => "friend", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
post_own does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
friend does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
179 | "discovered" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
discovered does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
180 | "distance" => 9, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
distance does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
181 | "vote_count" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
vote_count does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
182 | "location" => |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
location does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
183 | array("name" => "Berlin", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
name does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
Berlin does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
184 | "loc_coordinates" => |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
loc_coordinates does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
185 | array( |
||
186 | "lat" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
lat does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
187 | "lng" => 0 |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
lng does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
188 | ), |
||
189 | "loc_accuracy" => 0, |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
loc_accuracy does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
190 | "country" => "", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
country does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
191 | "city" => "", |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
city does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
192 | ), |
||
193 | "tags" => |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
tags does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
194 | array(), |
||
195 | "user_handle" => "0" |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
user_handle does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
0 does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
196 | ); |
||
197 | |||
198 | |||
199 | } |
||
200 | $loops = 29; |
||
0 ignored issues
–
show
Equals sign not aligned with surrounding assignments; expected 10 spaces but found 1 space
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line. To visualize $a = "a";
$ab = "ab";
$abc = "abc";
will produce issues in the first and second line, while this second example $a = "a";
$ab = "ab";
$abc = "abc";
will produce no issues. ![]() |
|||
201 | $isDetailedView = FALSE; |
||
202 | } |
||
203 | else |
||
204 | { |
||
205 | //Get Post Details |
||
206 | if(isset($_GET['postID']) && isset($_GET['getPostDetails'])) |
||
207 | { |
||
208 | $userHandleBuffer = []; |
||
209 | |||
210 | $accountCreator = new GetPostDetails(); |
||
211 | $accountCreator->setAccessToken($accessToken); |
||
212 | $data = $accountCreator->execute(); |
||
213 | |||
214 | $posts[0] = $data; |
||
215 | if(array_key_exists('children', $data)) { |
||
216 | foreach($data['children'] as $key => $child) |
||
217 | { |
||
218 | |||
219 | if(!$child["parent_creator"] == 1) |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
parent_creator does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
220 | { |
||
221 | $numberForUser = array_search($child['user_handle'], $userHandleBuffer); |
||
222 | if($numberForUser === FALSE) |
||
223 | { |
||
224 | array_push($userHandleBuffer, $child['user_handle']); |
||
225 | $data['children'][$key]['user_handle'] = count($userHandleBuffer); |
||
226 | } |
||
227 | else |
||
228 | { |
||
229 | $data['children'][$key]['user_handle'] = $numberForUser + 1; |
||
230 | } |
||
231 | } |
||
232 | |||
233 | array_push($posts, $data['children'][$key]); |
||
234 | } |
||
235 | $loops = $data['child_count'] + 1; |
||
236 | } |
||
237 | else |
||
238 | { |
||
239 | $loops = 1; |
||
240 | } |
||
241 | $isDetailedView = TRUE; |
||
242 | } |
||
243 | //Get Posts |
||
244 | else |
||
245 | { |
||
246 | $version = 'v2'; |
||
247 | if($view=='comment') |
||
248 | { |
||
249 | $url = "/v2/posts/location/discussed/"; |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
/v2/posts/location/discussed/ does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
250 | } |
||
251 | else |
||
252 | { |
||
253 | if($view=='upVote') |
||
254 | { |
||
255 | $url = "/v2/posts/location/popular/"; |
||
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
The string literal
/v2/posts/location/popular/ does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
256 | } |
||
257 | else |
||
258 | { |
||
259 | $url = "/v3/posts/location/combo/"; |
||
0 ignored issues
–
show
Equals sign not aligned with surrounding assignments; expected 5 spaces but found 1 space
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line. To visualize $a = "a";
$ab = "ab";
$abc = "abc";
will produce issues in the first and second line, while this second example $a = "a";
$ab = "ab";
$abc = "abc";
will produce no issues. ![]() Coding Style
Comprehensibility
introduced
by
The string literal
/v3/posts/location/combo/ does not require double quotes, as per coding-style, please use single quotes.
PHP provides two ways to mark string literals. Either with single quotes String literals in single quotes on the other hand are evaluated very literally and the only two
characters that needs escaping in the literal are the single quote itself ( Double quoted string literals may contain other variables or more complex escape sequences. <?php
$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";
print $doubleQuoted;
will print an indented: If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear. For more information on PHP string literals and available escape sequences see the PHP core documentation. ![]() |
|||
260 | $version = 'v3'; |
||
261 | } |
||
262 | } |
||
263 | |||
264 | if($version == 'v3') |
||
265 | { |
||
266 | $posts = getPosts($lastPostId, $accessToken, $url, $version)['recent']; |
||
267 | } |
||
268 | else |
||
269 | { |
||
270 | $posts = getPosts($lastPostId, $accessToken, $url, $version)['posts']; |
||
271 | } |
||
272 | $loops = 29; |
||
0 ignored issues
–
show
Equals sign not aligned with surrounding assignments; expected 10 spaces but found 1 space
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line. To visualize $a = "a";
$ab = "ab";
$abc = "abc";
will produce issues in the first and second line, while this second example $a = "a";
$ab = "ab";
$abc = "abc";
will produce no issues. ![]() |
|||
273 | $isDetailedView = FALSE; |
||
274 | } |
||
275 | } |
||
276 | ?> |
||
277 | <!DOCTYPE html> |
||
278 | <html lang="en"> |
||
279 | <head> |
||
280 | <title><?php echo getTitle($posts[0], $view, $isDetailedView);?></title> |
||
281 | |||
282 | <meta charset="utf-8"> |
||
283 | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
||
284 | <meta http-equiv="x-ua-compatible" content="ie=edge"> |
||
285 | |||
286 | <meta name="description" content="<?php echo getMetaDescription($posts[0], $view, $isDetailedView);?>"> |
||
287 | <meta name="keywords" content="jodelblue, jodel, blue, webclient, web, client, web-app, browser, app"> |
||
288 | |||
289 | <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi" crossorigin="anonymous"> |
||
0 ignored issues
–
show
|
|||
290 | <link rel="stylesheet" href="css/font-awesome.min.css"> |
||
291 | <link rel="stylesheet" href="style.css" type="text/css"> |
||
292 | |||
293 | <link rel="shortcut icon" type="image/x-icon" href="./img/favicon/favicon.ico"> |
||
294 | <link rel="icon" type="image/x-icon" href="./img/favicon/favicon.ico"> |
||
295 | <link rel="icon" type="image/gif" href="./img/favicon/favicon.gif"> |
||
296 | <link rel="icon" type="image/png" href="./img/favicon/favicon.png"> |
||
297 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon.png"> |
||
298 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon-57x57.png" sizes="57x57"> |
||
299 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon-60x60.png" sizes="60x60"> |
||
300 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon-72x72.png" sizes="72x72"> |
||
301 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon-76x76.png" sizes="76x76"> |
||
302 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon-114x114.png" sizes="114x114"> |
||
303 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon-120x120.png" sizes="120x120"> |
||
304 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon-128x128.png" sizes="128x128"> |
||
305 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon-144x144.png" sizes="144x144"> |
||
306 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon-152x152.png" sizes="152x152"> |
||
307 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon-180x180.png" sizes="180x180"> |
||
308 | <link rel="apple-touch-icon" href="./img/favicon/apple-touch-icon-precomposed.png"> |
||
309 | <link rel="icon" type="image/png" href="./img/favicon/favicon-16x16.png" sizes="16x16"> |
||
310 | <link rel="icon" type="image/png" href="./img/favicon/favicon-32x32.png" sizes="32x32"> |
||
311 | <link rel="icon" type="image/png" href="./img/favicon/favicon-96x96.png" sizes="96x96"> |
||
312 | <link rel="icon" type="image/png" href="./img/favicon/favicon-160x160.png" sizes="160x160"> |
||
313 | <link rel="icon" type="image/png" href="./img/favicon/favicon-192x192.png" sizes="192x192"> |
||
314 | <link rel="icon" type="image/png" href="./img/favicon/favicon-196x196.png" sizes="196x196"> |
||
315 | <meta name="msapplication-TileImage" content="./img/favicon/win8-tile-144x144.png"> |
||
316 | <meta name="msapplication-TileColor" content="#5682a3"> |
||
317 | <meta name="msapplication-navbutton-color" content="#5682a3"> |
||
318 | <meta name="application-name" content="JodelBlue"/> |
||
319 | <meta name="msapplication-tooltip" content="JodelBlue"/> |
||
320 | <meta name="apple-mobile-web-app-title" content="JodelBlue"/> |
||
321 | <meta name="msapplication-square70x70logo" content="./img/favicon/win8-tile-70x70.png"> |
||
322 | <meta name="msapplication-square144x144logo" content="./img/favicon/win8-tile-144x144.png"> |
||
323 | <meta name="msapplication-square150x150logo" content="./img/favicon/win8-tile-150x150.png"> |
||
324 | <meta name="msapplication-wide310x150logo" content="./img/favicon/win8-tile-310x150.png"> |
||
325 | <meta name="msapplication-square310x310logo" content="./img/favicon/win8-tile-310x310.png"> |
||
326 | </head> |
||
327 | |||
328 | <body> |
||
329 | <header> |
||
330 | <nav class="navbar navbar-full navbar-dark navbar-fixed-top"> |
||
331 | <div class="container"> |
||
332 | <?php |
||
333 | |||
334 | if(isset($_GET['postID']) && isset($_GET['getPostDetails'])) |
||
335 | { |
||
336 | echo '<a id="comment-back" href="index.php?view=' . $view . '#postId-' . htmlspecialchars($_GET['postID']) . '">'; |
||
0 ignored issues
–
show
|
|||
337 | echo '<i class="fa fa-angle-left fa-3x"></i>'; |
||
338 | echo '</a>'; |
||
339 | echo '<h1>'; |
||
340 | echo '<a href="index.php?getPostDetails=' . htmlspecialchars($_GET['getPostDetails']) . '&postID=' . htmlspecialchars($_GET['postID']) . '" class="spinnable">'; |
||
0 ignored issues
–
show
|
|||
341 | } |
||
342 | else |
||
343 | { |
||
344 | echo '<h1>'; |
||
345 | echo '<a href="./" class="spinnable">'; |
||
346 | } |
||
347 | ?> |
||
348 | JodelBlue <i class="fa fa-refresh fa-1x"></i></a> |
||
349 | </h1> |
||
350 | |||
351 | <div id="location_mobile" class="hidden-sm-up"> |
||
352 | <form method="get"> |
||
353 | <input type="text" id="city_mobile" name="city" placeholder="<?php if(isset($newPositionStatus)) echo $newPositionStatus; ?>" required> |
||
0 ignored issues
–
show
|
|||
354 | |||
355 | <input type="submit" id="submit_mobile" class="fa" value="" /> |
||
356 | </form> |
||
357 | </div> |
||
358 | </div> |
||
359 | </nav> |
||
360 | </header> |
||
361 | |||
362 | <div class="mainContent container"> |
||
363 | <div class="content row"> |
||
364 | <article class="topContent col-sm-8"> |
||
365 | |||
366 | <content id="posts"> |
||
367 | <?php |
||
368 | for($i = 0; $i<$loops; $i++) |
||
369 | { |
||
370 | if(array_key_exists($i, $posts) && array_key_exists('post_id', $posts[$i]) && isset($posts[$i]['post_id'])) |
||
371 | { |
||
372 | $lastPostId = $posts[$i]['post_id']; |
||
373 | |||
374 | jodelToHtml($posts[$i], $view, $isDetailedView); |
||
375 | } |
||
376 | } ?> |
||
377 | |||
378 | </content> |
||
379 | |||
380 | <?php if(!isset($_GET['postID']) && !isset($_GET['getPostDetails'])) { ?> |
||
381 | <p id="loading"> |
||
382 | Loading… |
||
383 | </p> |
||
384 | <?php } ?> |
||
385 | </article> |
||
386 | |||
387 | <aside class="topSidebar col-sm-4 sidebar-outer"> |
||
388 | <div class="fixed"> |
||
389 | <article> |
||
390 | <div> |
||
391 | <h2>Position / Hashtag</h2> |
||
392 | <form method="get"> |
||
393 | <input type="text" id="city" name="city" placeholder="<?php if(isset($newPositionStatus)) echo $newPositionStatus; ?>" required> |
||
0 ignored issues
–
show
|
|||
394 | <label>try: #jhj</label><br> |
||
395 | <input type="submit" value="Set Location" /> |
||
396 | </form> |
||
397 | </div> |
||
398 | </article> |
||
399 | |||
400 | <article> |
||
401 | <div> |
||
402 | <h2>Karma</h2> |
||
403 | <?php echo getKarma($accessToken_forId1); ?> |
||
404 | </div> |
||
405 | </article> |
||
406 | |||
407 | <article> |
||
408 | <div> |
||
409 | <?php if(isset($_GET['postID']) && isset($_GET['getPostDetails'])) { ?> |
||
410 | <h2>Comment on Jodel</h2> |
||
411 | <form method="POST"> |
||
412 | <input type="hidden" name="ancestor" value="<?php echo htmlspecialchars($_GET['postID']);?>" /> |
||
413 | <textarea id="message" name="message" placeholder="Send a comment on a Jodel to all students within 10km" required></textarea> |
||
0 ignored issues
–
show
|
|||
414 | <br /> |
||
415 | <input type="submit" value="SEND" /> |
||
416 | </form> |
||
417 | <?php } else { ?> |
||
418 | <h2>New Jodel</h2> |
||
419 | <form method="POST"> |
||
420 | <textarea id="message" name="message" placeholder="Send a Jodel to all students within 10km" required></textarea> |
||
0 ignored issues
–
show
|
|||
421 | <br /> |
||
422 | <select id="postColorPicker" name="color"> |
||
423 | <option value="06A3CB">Blue</option> |
||
424 | <option value="8ABDB0">Teal</option> |
||
425 | <option value="9EC41C">Green</option> |
||
426 | <option value="FFBA00">Yellow</option> |
||
427 | <option value="DD5F5F">Red</option> |
||
428 | <option value="FF9908">Orange</option> |
||
429 | </select> |
||
430 | <br /> |
||
431 | <input type="submit" value="SEND" /> |
||
432 | </form> |
||
433 | <?php } ?> |
||
434 | </div> |
||
435 | </article> |
||
436 | |||
437 | <article> |
||
438 | <div> |
||
439 | <h2>Login</h2> |
||
440 | </div> |
||
441 | </article> |
||
442 | </div> |
||
443 | </aside> |
||
444 | </div> |
||
445 | <div id="sortJodelBy" class="row"> |
||
446 | <div class="col-xs-12"> |
||
447 | <div class="row"> |
||
448 | <div class="col-xs-3"> |
||
449 | <a href="index.php" <?php if($view=='time') echo 'class="active"';?>><i class="fa fa-clock-o fa-3x"></i></a> |
||
450 | </div> |
||
451 | <div class="col-xs-3"> |
||
452 | <a href="index.php?view=comment" <?php if($view=='comment') echo 'class="active"';?>><i class="fa fa-commenting-o fa-3x"></i></a> |
||
0 ignored issues
–
show
|
|||
453 | </div> |
||
454 | <div class="col-xs-3"> |
||
455 | <a href="index.php?view=upVote" <?php if($view=='upVote') echo 'class="active"';?>><i class="fa fa-angle-up fa-3x"></i></a> |
||
0 ignored issues
–
show
|
|||
456 | </div> |
||
457 | <div class="col-xs-3"> |
||
458 | <nav> |
||
459 | <a href="./about-us.html">about us</a> |
||
460 | </nav> |
||
461 | </div> |
||
462 | </div> |
||
463 | </div> |
||
464 | </div> |
||
465 | </div> |
||
466 | |||
467 | |||
468 | <!-- jQuery, Tether, Bootstrap JS and own--> |
||
469 | <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js" integrity="sha384-3ceskX3iaEnIogmQchP8opvBy3Mi7Ce34nWjpBIwVTHfGYWQS9jwHDVRnpKKHJg7" crossorigin="anonymous"></script> |
||
0 ignored issues
–
show
|
|||
470 | <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.3.7/js/tether.min.js" integrity="sha384-XTs3FgkjiBgo8qjEjBk0tGmf3wPrWtA6coPfQDfFEY8AnYJwjalXCiosYRBIBZX8" crossorigin="anonymous"></script> |
||
0 ignored issues
–
show
|
|||
471 | <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js" integrity="sha384-BLiI7JTZm+JWlgKa0M0kGRpJbF2J8q+qreVrKBC47e3K6BW78kGLrCkeRX6I9RoK" crossorigin="anonymous"></script> |
||
0 ignored issues
–
show
|
|||
472 | <script src="js/jQueryEmoji.js"></script> |
||
473 | |||
474 | <script> |
||
475 | //BackButton |
||
476 | function goBack() |
||
477 | { |
||
478 | window.history.back(); |
||
479 | } |
||
480 | |||
481 | $(document).ready(function() |
||
482 | { |
||
483 | //Transform UTF-8 Emoji to img |
||
484 | $('.jodel > content').Emoji(); |
||
485 | |||
486 | $('a').on('click', function(){ |
||
487 | $('a').removeClass('selected'); |
||
488 | $(this).addClass('selected'); |
||
489 | }); |
||
490 | |||
491 | function scrollToAnchor(aid){ |
||
492 | var aTag = $("article[id='"+ aid +"']"); |
||
493 | $('html,body').animate({scrollTop: aTag.offset().top-90},'slow'); |
||
494 | } |
||
495 | |||
496 | <?php if(!isset($_GET['postID']) && !isset($_GET['getPostDetails'])) { ?> |
||
497 | |||
498 | |||
499 | |||
500 | |||
501 | |||
502 | var win = $(window); |
||
503 | var lastPostId = "<?php echo $lastPostId; ?>"; |
||
504 | var view = "<?php echo $view; ?>" |
||
505 | var old_lastPostId = ""; |
||
506 | var morePostsAvailable = true; |
||
507 | |||
508 | if(window.location.hash) |
||
509 | { |
||
510 | var hash = window.location.hash.slice(1); |
||
511 | |||
512 | if(!$("article[id='"+ hash +"']").length) |
||
513 | { |
||
514 | for (var i = 5; i >= 0; i--) |
||
515 | { |
||
516 | if(!$("article[id='"+ hash +"']").length) |
||
517 | { |
||
518 | $.ajax({ |
||
519 | url: 'get-posts-ajax.php?lastPostId=' + lastPostId + '&view=' + view, |
||
520 | dataType: 'html', |
||
521 | async: false, |
||
522 | success: function(html) { |
||
523 | var div = document.createElement('div'); |
||
524 | div.innerHTML = html; |
||
525 | var elements = div.childNodes; |
||
526 | old_lastPostId = lastPostId; |
||
527 | lastPostId = elements[3].textContent; |
||
528 | lastPostId = lastPostId.replace(/\s+/g, ''); |
||
529 | //alert('Neu: ' + lastPostId + " Alt: " + old_lastPostId); |
||
530 | if(lastPostId == old_lastPostId) { |
||
531 | |||
532 | //morePostsAvailable = false; |
||
533 | } |
||
534 | else { |
||
535 | //alert(elements[3].textContent); |
||
536 | $('#posts').append(elements[1].innerHTML); |
||
537 | $('#posts').hide().show(0); |
||
538 | } |
||
539 | $('#loading').hide(); |
||
540 | } |
||
541 | }); |
||
542 | |||
543 | $('.jodel > content').Emoji(); |
||
544 | } |
||
545 | |||
546 | } |
||
547 | scrollToAnchor(hash); |
||
548 | |||
549 | } |
||
550 | } |
||
551 | |||
552 | // Each time the user scrolls |
||
553 | win.scroll(function() { |
||
554 | |||
555 | |||
556 | // End of the document reached? |
||
557 | if ($(window).scrollTop() + $(window).height() > $(document).height() - 100 && morePostsAvailable) |
||
558 | { |
||
559 | $('#loading').show(); |
||
560 | |||
561 | $.ajax({ |
||
562 | url: 'get-posts-ajax.php?lastPostId=' + lastPostId + '&view=' + view, |
||
563 | dataType: 'html', |
||
564 | async: false, |
||
565 | success: function(html) { |
||
566 | var div = document.createElement('div'); |
||
567 | div.innerHTML = html; |
||
568 | var elements = div.childNodes; |
||
569 | old_lastPostId = lastPostId; |
||
570 | lastPostId = elements[3].textContent; |
||
571 | lastPostId = lastPostId.replace(/\s+/g, ''); |
||
572 | //alert('Neu: ' + lastPostId + " Alt: " + old_lastPostId); |
||
573 | if(lastPostId == old_lastPostId) |
||
574 | { |
||
575 | |||
576 | //morePostsAvailable = false; |
||
577 | } |
||
578 | else |
||
579 | { |
||
580 | //alert(elements[3].textContent); |
||
581 | $('#posts').append(elements[1].innerHTML); |
||
582 | } |
||
583 | $('#loading').hide(); |
||
584 | } |
||
585 | }); |
||
586 | |||
587 | $('.jodel > content').Emoji(); |
||
588 | } |
||
589 | }); |
||
590 | <?php } ?> |
||
591 | }); |
||
592 | |||
593 | </script> |
||
594 | |||
595 | <?php |
||
596 | if(is_file('./piwik-script.html')) |
||
597 | { |
||
598 | require_once('./piwik-script.html'); |
||
599 | } |
||
600 | ?> |
||
601 | |||
602 | </body> |
||
603 | </html> |
||
604 | |||
0 ignored issues
–
show
|
|||
605 |
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line.
To visualize
will produce issues in the first and second line, while this second example
will produce no issues.