file contents of staff_credits_2024.php
<?
// ===========================================================================================
// HIDDEN EARTH STAFF CREDITS for 2024
// ===========================================================================================
// Note: this is a program file, and follows an arcane syntax. However, the lists of staff credits
// are, broadly speaking, in plain text, and could be extracted from here and pasted into a
// Word document, if thats what you are seeking to do.
// ===========================================================================================
// HOW IT WORKS
// ===========================================================================================
/* There are two PHP functions that accept a heredoc and convert the plain-text listings into
formatted HTML.
Function echo_heading_and_table() prints a heading line and a table. The first line of the
listing is treated as a heading, followed by table-rows. Cells in a row are separated by
the pipe character. NOTE THAT it is "correct" that (sometimes) the same name appears in
the heading line, and in the first line of the table entries.
Function echo_heading_and_list() prints a heading line, followed by a comma-separated list
of entries. If the first item in the list contains [ then the text between [ and ] is
embellished. If [ is not present, the items are separated with commas and with nbsp replacing
spaces within an entry. The lines are sorted alphabetically by the first character (not
conventional, but easier than messing about extracting surnames).
*/
// ===========================================================================================
// INITIALISATION
// ===========================================================================================
require_once('process_staff_credits.php');
$file = __FILE__; // The current file. Used in __show.php
include '__show.php'; // Decide whether to display this code in the browser or execute it
// ===========================================================================================
// STAFF CREDITS in various lists
// ===========================================================================================
echo_heading_and_table(<<<EOT
Conference Manager | Les Williams
Conference Manager | Les Williams
Conference Treasurer | David Gough
Conference Secretary | David Gibson
Timetable Manager | Gary Douthwaite
Trade Hall Manager | Badger
EOT
);
// ----------------------------------------------------------------------------
echo_heading_and_list(<<<EOT
Technical Team: Manager | Frank Tully
Frank Tully [with]
Adrian Turner
Bartek Biela
Basher
Ben Marks
Chris Williams
Dave Appleing
Dave King
Dave Tuffery
David Bell
Firas Fayad
Helen Fairclough
James Abbott
Jenny Abbott
Joe Watkiss
Josh Bratchley
Josh Henry
Pamela Welfare
Paul Wilman
Scott Bradley
Teddy Ng
Tim Webber
Zeina Yehya
Buddy (Roadie)
EOT
);
// ----------------------------------------------------------------------------
echo_heading_and_list(<<<EOT
Reception Team: Manager | Lou Biffin
Lou Biffin [with]
Andrew Morse
Jess Burgess
Sam Drake
Sarah Payne
EOT
);
// ----------------------------------------------------------------------------
echo_heading_and_table(<<<EOT
Events Team
Lecture Secretary | Gary Douthwaite
Signposting | Paul and Tiggy Dummer
SRT Events | Mark Wright, Dave Cowley, Jess Burkey
Speleo Olympics | The Roberts Family (Andrea, Philip, Justin, Charlie)
Stomp DJ | Basher
Opening MC | John Gunn
Closing MC | Pete Glanvill
After-Dinner Speaker | Paul Taylor
Closing Script and Projections| Martell Baines, David Gibson
EOT
);
// ----------------------------------------------------------------------------
echo_heading_and_table(<<<EOT
Bookings and Publicity Team
Bookings Manager | David Gibson
Poster and Brochure Design | Tony King
Web Site and Social Media | Gary Douthwaite
EOT
);
// ----------------------------------------------------------------------------
echo_heading_and_table(<<<EOT
Competitions Team: Manager | David Gibson
Photo Salon Co-ordinator | Mark Burkey | Judges: Mark Burkey, Keith Edwards, Pete Glanvill
Young Photographer Co-ordinator | Julie Wooldridge | Judges: Julie Wooldridge, Basher, Badger
Video Salon Co-ordinator | Paul Taylor, Footleg | Judges: Paul Taylor, Nicola Bayley, Steve Thomas
Art Salon Co-ordinator | Robin Gray, Ceris Jones | Judges: Robin Gray, Ceris Jones, Buddy
Surveying Salon | Andrew Atkinson | Judges: Andrew Atkinson, Wookey, Nat Dalton
Pink Sheet Runner | Nat Fretwell |
Club Stands Award | Les Williams | Judges: John Gunn, Dave Shearsmith
Arthur Butcher Award | Wookey | Judges: Andrew Atkinson, Wookey, Nat Dalton
Tratman Award | Chris Howes | Judges: Joe Duxbury, Chris Howes, Alan Jeffreys, Martin Mills, Linda Wilson
Giles Barker Award | Chris Howes | Judges: Morgannwg CC, Red Rose CPC
EOT
);
// ----------------------------------------------------------------------------
echo_heading_and_list(<<<EOT
Sponsorship and Prizes Team
Martell Baines
Julie Wooldridge
Margaret Richardson
EOT
);
// ----------------------------------------------------------------------------
echo_heading_and_list(<<<EOT
First Aid Team | Chris Williams
Chris Williams [with]
Badger
Gaz Stoneley
Kieran Wyatt
Mary Cutts
Paul Wilman
Sam Drake
EOT
);
// ----------------------------------------------------------------------------
echo_heading_and_list(<<<EOT
Special thanks to | Pafiliwn Llangollen Pavilion
Nicola Howatson
Cerys Howatson
Bob Howatson
Daf Howatson
Dave Parry
Jamie Winning
and the food and beverage team
EOT
);
?>