annotate pages/about.inc.php @ 1096:bbc0a3d0b51e

Major renaming / refactor of site messages. Some that were previously modifiable from admin interface are now "hardcoded" in the configuration file. Having these settings made modifiable from there made no sense and just took space in the UI.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 27 Jan 2017 22:15:06 +0200
parents 7e497188e4c6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1075
7e497188e4c6 Use long tags.
Matti Hamalainen <ccr@tnsp.org>
parents: 1001
diff changeset
1 <?php
160
0980e705dea0 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 159
diff changeset
2 //
571
ce11ea112a65 Change the header blurb a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 565
diff changeset
3 // FAPWeb - Simple Web-based Demoparty Management System
160
0980e705dea0 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 159
diff changeset
4 // About page
1001
ffacd904fd1f Update copyrights.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
5 // (C) Copyright 2012-2015 Tecnic Software productions (TNSP)
160
0980e705dea0 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 159
diff changeset
6 //
1096
bbc0a3d0b51e Major renaming / refactor of site messages. Some that were previously
Matti Hamalainen <ccr@tnsp.org>
parents: 1075
diff changeset
7 echo stGetSetting("msgAboutDescription");
621
9ad53fda22bc Use newly added setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 612
diff changeset
8
9ad53fda22bc Use newly added setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 612
diff changeset
9 if (stGetSetting("showInfoTextOnAbout"))
9ad53fda22bc Use newly added setting.
Matti Hamalainen <ccr@tnsp.org>
parents: 612
diff changeset
10 echo stGetSetting("siteInfoText");
123
5837b9333964 Add new "about" page, and setting for default page.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11
5837b9333964 Add new "about" page, and setting for default page.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 if (stGetSetting("showNewsOnAbout") &&
159
0b5c22e253e1 Show 2 latest news items on the about page.
Matti Hamalainen <ccr@tnsp.org>
parents: 123
diff changeset
13 ($res = stExecSQL("SELECT * FROM news ORDER BY utime DESC LIMIT 2")) !== FALSE)
123
5837b9333964 Add new "about" page, and setting for default page.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14 {
5837b9333964 Add new "about" page, and setting for default page.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 foreach ($res as $item)
5837b9333964 Add new "about" page, and setting for default page.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 stPrintNewsItem($item);
5837b9333964 Add new "about" page, and setting for default page.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17
660
fe1ca8a26e78 Adjust the HTML of about page a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 621
diff changeset
18 echo "<div class=\"moreNews\"><a href=\"news\">More news ...</a></div>\n";
123
5837b9333964 Add new "about" page, and setting for default page.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
19 }
5837b9333964 Add new "about" page, and setting for default page.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20 ?>