-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
29 lines (26 loc) · 846 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/**
* Add custom URLs to XML Sitemap
*
* This is a companion for the XML Sitemap module.
* It makes it easier to add multiple URLs to the sitemap easily.
*
* PHP version 7
*
* @category Search
* @package DaVinci
* @author Original Author <[email protected]>
* @author Another Author <[email protected]>
* @copyright 2018 Queens Library
* @license http://www.queenslibrary.org Proprietary?
* @version GIT: $Id$
* @link https://www.drupal.org/project/xmlsitemap
* @see XMLSitemap
* @since File available since May 2018
* @deprecated Not deprecated
*/
require 'drupal_function.php';
$input = MyCSV::readInputFile("smallinput.csv");
//$input = MyCSV::readInputFile("input.csv");
//$input = MyCSV::readInputFile("tinyinput.csv");
MyCSV::writeXMLSiteMap($input[0], $input[2]);