You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
484 B
PHTML
16 lines
484 B
PHTML
8 years ago
|
<?php
|
||
|
if (!defined('BASEPATH'))
|
||
|
exit('No direct script access allowed');
|
||
|
|
||
|
class ajax extends CI_Controller {
|
||
|
|
||
|
//ajax 获取信息页面底部tailorshort
|
||
|
public function footerTailorShort(){
|
||
|
$html = '<div class="textBlock">Overwhelmed by thousands of trip ideas and tours? <br />Contact one of our travel advisors for help! <span><a href="/create-my-trip.htm">Help Me Plan Now <i class="fa fa-angle-right" aria-hidden="true"></i></a></span> </div>';
|
||
|
echo $html;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|