source: sandbox/expresso-solr/expressoMail1_2/inc/solrclient/examples/init.php @ 7576

Revision 7576, 343 bytes checked in by adir, 11 years ago (diff)

Ticket #000 - Adicionando a integracao de buscas com Solr na base a ser isnerida na comunidade

Line 
1<?php
2
3error_reporting(E_ALL);
4ini_set('display_errors', true);
5
6require('autoload.php');
7
8if (file_exists('config.php')) {
9    require('config.php');
10} else {
11    require('config.dist.php');
12}
13
14
15function htmlHeader(){
16    echo '<html><head><title>Solarium examples</title></head><body>';
17}
18
19function htmlFooter(){
20    echo '</body></html>';
21}
Note: See TracBrowser for help on using the repository browser.