This repository has been archived by the owner on Apr 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbasic.php
252 lines (205 loc) · 6.44 KB
/
basic.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
<?php
/**
* This is a template for rendering a feed described as "basic" in the
* "Yahoo! Developer's Guide for Feed Templates":
* http://public.yahoo.com/~jchu/StdFeedTemplate_TechnicalandDesignGuidance.doc
*/
//sample url
$feedUrl = 'http://public.yahoo.com/~jchu/basic_feed_structure.xml';
//fetch rss xml in a commonly available way
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $feedUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$xmlString = curl_exec($ch);
curl_close($ch);
//ensure string is utf-8 encoded for simplexml_load_string()
$utf8String = utf8_encode($xmlString);
//parse xml
$feed = simplexml_load_string($utf8String);
//format data & set default values to keep template uncluttered
$data = array(
'header' => array(
'logo' => array(
'link' => $feed->channel->image->link,
'url' => $feed->channel->image->url
)
),
'navigation' => array(),
'body' => array()
);
//define navigation elements
foreach($feed->channel->children('http://www.yahoo.com/y-namespace')->navigations->navigation as $navigation){
$data['navigation'][] = array(
'title' => $navigation->attributes()->title,
'url' => $navigation->attributes()->url
);
}
//define list items
foreach($feed->channel->item as $item){
//extract image info, if defined
$image = null;
if(isset($item->children('http://search.yahoo.com/mrss/')->content)){
$image = array(
'url' => $item->children('http://search.yahoo.com/mrss/')->content->attributes()->url
);
}
//package item data
$data['body'][] = array(
'image' => $image,
'category' => array(
'text' => $item->category,
'domain' => $item->category->attributes()->domain
),
'title' => $item->title,
'link' => $item->link,
'description' => $item->description,
'pubDate' => $item->pubDate,
);
}
?>
<style>
/* wrap app to limit style bleeding from parent */
.wrapper {
/* define app-global settings */
font-family: arial;
font-size: 12pt;
}
.wrapper a {
/* we don't ever want links underlined */
text-decoration: none;
}
/* styles for area above nav */
.wrapper .header .logo {
background-color: #ccc;
padding: 10px;
}
.wrapper .header .logo .label {
/* align label and image right in header (see img styling below) */
float: right;
/* put some space btwn label and img */
margin-right: 10px;
}
.wrapper .header .logo img {
float: right;
/* img is linked, but we don't want the border around it */
border: none;
}
/* navigation styles */
.wrapper .header .navigation {
background-color: #000;
color: #fff;
padding: 10px;
}
.wrapper .header .navigation .label {
margin-right: 10px;
/* align label next to ul (see below) */
float: left;
}
.wrapper .header .navigation ul {
/* remove li bullet points*/
list-style: none;
/* align ul next to label */
display: inline;
}
.wrapper .header .navigation li {
font-weight: bold;
/* add a bit of white space btwn nav items */
margin-right: 10px;
/* display items horizontally */
float: left;
}
/* main list styles */
.wrapper .body {
/* remove whitespace above list */
margin-top: 0px;
/* add whitespace around list */
padding: 10px;
}
.wrapper .body li {
margin-bottom: 10px;
/* remove li bullet points*/
list-style: none;
/* kludge: position relative so we can position pubdate and morelink absolute (see below) */
position: relative;
/* kludge: if there isn't an image, account for missing space */
min-height: 100px;
/* display separator under each item */
border-bottom: 1px solid #ccc;
/* add whitespace above bottom separator */
padding-bottom: 10px;
}
.wrapper .body li .image {
/* align img left of text content */
float: left;
margin-right: 10px;
}
.wrapper .body li .category {
font-weight: bold;
margin-bottom: 10px;
}
.wrapper .body li .title {
font-weight: bold;
/* title is an a-tag. display block so we can add a margin to it */
display: block;
margin-bottom: 10px;
}
.wrapper .body li .description {
/* display block so more link doesn't wrap */
display: block;
color: #ccc;
}
.wrapper .body li .pubDate {
/* align pub date to right of "more" link */
float: right;
/* position pub date in lower right corner */
position: absolute;
bottom: 10px;
right: 10px;
color: #ccc;
}
.wrapper .body li .moreLink {
font-weight: bold;
/* position link in lower left, but next to image (if there is one) */
position: absolute;
bottom: 10px;
}
</style>
<div class="wrapper">
<div class="header">
<div class="logo">
<a href="<?= $data['header']['logo']['link'] ?>" class="image"><img src="<?= $data['header']['logo']['url'] ?>"/></a>
<!-- kludge: put label below image to correct funky floating -->
<span class="label">Go to: </span>
<div style="clear:both"></div>
</div>
<div class="navigation">
<span class="label">Visit: </span>
<ul>
<? foreach($data['navigation'] as $item): ?>
<li>
<a href="<?= $item['url'] ?>"><?= $item['title'] ?></a>
</li>
<? endforeach ?>
</ul>
<div style="clear:both"></div>
</div>
</div>
<ul class="body">
<? foreach($data['body'] as $item): ?>
<li>
<!-- if there is an image defined, display it -->
<? if($item['image']): ?>
<div class="image">
<img src="<?= $item['image']['url'] ?>"/>
</div>
<? endif ?>
<div class="category"><?= $item['category']['text'] ?></div>
<a href="<?= $item['link'] ?>" class="title"><?= $item['title'] ?></a>
<div class="description"><?= $item['description'] ?></div>
<a href="<?= $item['category']['domain'] ?>" class="moreLink">More in <?= $item['category']['text'] ?></a>
<div class="pubDate"><?= $item['pubDate'] ?></div>
<div style="clear:both"></div>
</li>
<? endforeach ?>
</ul>
</div>