comparison mconfig.inc.php.example @ 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 faa835271dfd
children ea2bc0667482
comparison
equal deleted inserted replaced
1095:faa835271dfd 1096:bbc0a3d0b51e
79 "previewImageSize" => array(640, 480), // resolution W x H 79 "previewImageSize" => array(640, 480), // resolution W x H
80 80
81 "previewThumbType" => "PNG", 81 "previewThumbType" => "PNG",
82 "previewThumbQuality" => 9, // compression (PNG) or quality (JPEG) 82 "previewThumbQuality" => 9, // compression (PNG) or quality (JPEG)
83 "previewThumbSize" => array(64, 48), 83 "previewThumbSize" => array(64, 48),
84
85
86 //
87 // Various message texts
88 //
89 "siteMenuHeader" =>
90 "<a href=\"about\"><img id=\"menuLogo\" src=\"img/fapsm2.png\" alt=\"FAP 2017\" /></a>",
91
92 "siteMenuFooter" => "",
93
94 "siteInfoText" => "
95 <div class=\"date\">
96 <span>??.-??.??.2017</span>
97 <span>Helsinki, Finland</span>
98 <span>@ old location</span>
99 <span class=\"notice\">Entry <b>20 EUR</b> + prod</span>
100 <span><a href=\"irc://#fap2017@ircnet\" style=\"color:#0f0\">#fap2017 @ IRCNet</a></span>
101 </div>
102 ",
103
104 "siteExtraHTML" => "
105 <div id=\"extra\"><div>
106 <!-- <a href=\"http://scenesat.com/\"><div class=\"scenesat\"></div></a> -->
107 <a href=\"http://demozoo.org/\"><div class=\"demozoo\"></div></a>
108 </div></div>
109 ",
110
111
112 "msgAboutDescription" => "
113 <div style=\"text-align: center;\">
114 <img src=\"img/fap.png\" alt=\"FAP\" />
115 <p>
116 Pure Amiga demoscene party, all traditional Amiga compos and purely Amiga-oriented program.
117 <br />
118 <span class=\"notice\">
119 YOU <b>MUST</b> HAVE AT LEAST ONE ENTRY TO COMPETITIONS IF YOU COME TO THE PARTY.
120 </span>
121 </p>
122 </div>
123 ",
124
125 "msgNewsHeader" => "
126 <h1>The FAPper's news outlet</h1>
127 ",
128
129 "msgVoteFinished" => "
130 <h1>Yay, you have voted!</h1>
131 <p>Now go FAP some more! And make a demo about it.</p>
132 <p>Or perhaps <a href=\"vote\">vote again!</a></p>
133 ",
134
135 "msgVotingDisabled" => "
136 <h1>Sorry, voting disabled!</h1>
137 <p>Voting functionality not available at this time.</p>
138 ",
139
140 "msgUserAuthError" => "
141 <h1>Not logged in</h1>
142 <p>
143 You are not authenticated currently. <a href=\"vote\">Try to login again.</a>
144 </p>
145 ",
146
147 "msgRegisterDisabled" => "
148 <h1>Sorry, registration disabled!</h1>
149 <p>
150 Registration to the event is not enabled at this time.
151 </p>
152 ",
153
154 "msgRegisterLimitExceeded" => "
155 <h1>Sorry, registration disabled!</h1>
156 <p>
157 Registration to the event is not available at this time due to
158 number of attendees limit having been reached. <b>:(</b>
159 </p>
160 ",
161
162 "msgVisitorsPageRegLink" => "
163 <div class=\"reglink\">
164 To register, use <a href=\"register\">this form</a>.
165 </div>
166 ",
167
168 "msgRegisterPageBlurb" => "
169 <h1>Registration</h1>
170 ",
171
172 "msgRegisterInfoText" => "
173 Only your <b>handle</b> and the answer to the botcheck are strictly required.
174 If you plan on joining the IRC channel
175 (<a href=\"irc://#fap2017@ircnet\">#fap2017 @ IRCNet</a>) or staying up to date by other means,
176 <b>e-mail</b> is not required either.
177 </p>
178 ",
179
180 "msgRegisterPostText" => "
181 <h1>Registration successful</h1>
182 <p>Now go make a demo about it!</p>
183 ",
184
185 "msgRegisterPostNoEmail" => "
186 <h2>By the way ...</h2>
187 <p>As you did not specify an e-mail contact address, you'll have to get updates
188 and information about the location (if you don't already know it) by
189 some other means (IRC, for example.)
190 </p>
191 ",
192
84 ); 193 );
85 194
86 195
87 date_default_timezone_set("Europe/Helsinki"); 196 date_default_timezone_set("Europe/Helsinki");
88 197