If there's no simple one-many relationship between template slots and pages on which they're used (with Slot A used on pages 1,2,3, and Slot B used on pages 2,3,4, for example), then I'd go with devinemke's suggestion, only the other way around. Define all the constants, and then declare arrays that use those constants.
define('__TITLE__', 'KurtzDownloadDB');
//...
$array = array('__TITLE__', __TITLE__,
//...
);
But one thing I'd recommend is to not use constants using this XXXX format: PHP's magic constants (e.g., FILE, LINE, METHOD) have this format and there may be one introduced in the future that conflicts with yours.