# insert-html-snippet/trunk/admin/constants.php

Insert Html Snippet, version trunk. 30 lines.

- Page: https://pluginprobe.com/plugins/insert-html-snippet/trunk/code/admin/constants.php
- Raw: https://pluginprobe.com/plugins/insert-html-snippet/trunk/raw/admin/constants.php
- Modified: 2025-02-19T13:24:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/insert-html-snippet/trunk/code/admin/constants.php#L10-L20`.

```php
<?php


define('XYZ_IHS_INSERTION_METHOD', [ 
    'AUTOMATIC'=>1,
    'SHORT_CODE'=>2
]);

define('XYZ_IHS_INSERTION_LOCATION', [ 
    'ADMIN_RUN_ON_HEADER' => '3',
    'ADMIN_RUN_ON_FOOTER' => '4',
    'FRONTEND_RUN_ON_HEADER' => '7',
    'FRONTEND_RUN_ON_FOOTER' => '8',
]);


define('XYZ_IHS_INSERTION_LOCATION_TYPE', [
    'GLOBAL' => 1,
    'ADMIN' => 2,
    'FRONT_END' => 3,
    'PAGE_POST_CUSTOM_POST_TYPE' => 4,
    'CATEGORIES_ARCHIVES_TAGS_TAXONOMIES' => 5
]);





?>

```
