mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
- Introduced a new config file for AdSense settings. - Added client ID and ad slot identifiers for various placements.
23 lines
577 B
PHP
23 lines
577 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| AdSense Settings
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This file contains the configuration for Google AdSense on Heimerdinger.lol
|
|
|
|
|
*/
|
|
|
|
'client_id' => 'ca-pub-4505764048662657',
|
|
|
|
'slots' => [
|
|
'horizontal_banner' => '9840151408',
|
|
'vertical_banner' => '9117294343',
|
|
'in_article' => '7169787855',
|
|
'rectangle' => '1917461172',
|
|
'common' => '4128691547'
|
|
]
|
|
];
|