Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F44414599
rue89.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
rue89.php
View Options
<?php
//Page analysis for www.rue89.com
class
Rue89Page
extends
Page
{
function
analyse
()
{
parent
::
analyse
();
//Hardcoded known info
$this
->
site
=
"Rue 89"
;
$this
->
skipYMD
=
true
;
//Gets date
// http://www.rue89.com/2011/02/26/
$yyyy
=
substr
(
$this
->
url
,
21
,
4
);
$mm
=
substr
(
$this
->
url
,
26
,
2
);
$dd
=
substr
(
$this
->
url
,
29
,
2
);
$this
->
date
=
strftime
(
LONG_DATE_FORMAT
,
mktime
(
0
,
0
,
0
,
$mm
,
$dd
,
$yyyy
));
//Gets author
//TODO: ensure no article has more than one author
$pos1
=
strpos
(
$this
->
data
,
'<div class="authors">'
);
$pos1
=
strpos
(
$this
->
data
,
'class="author">'
,
$pos1
)
+
15
;
$pos2
=
strpos
(
$this
->
data
,
'/a>'
,
$pos1
)
-
1
;
$this
->
author
=
substr
(
$this
->
data
,
$pos1
,
$pos2
-
$pos1
);
}
function
get_title
()
{
//Article title is the meta tag name, and not the page title
return
$this
->
meta_tags
[
'name'
];
}
function
get_meta_tags
()
{
//Rue89 doesn't always use <meta name="" value=""> but sometimes property= or itemprop=
return
$this
->
get_all_meta_tags
();
}
}
?>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 23:09 (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3914953
Default Alt Text
rue89.php (1 KB)
Attached To
Mode
rSTG Source templates generator
Attached
Detach File
Event Timeline
Log In to Comment