This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include "citygrid-places-api-class.php"; | |
/* | |
* | |
* | |
*/ | |
class ExternalListingService { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include "citygrid-places-api-class.php"; | |
/* | |
* | |
* | |
*/ | |
class ExternalListingService { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class citygridplaces { | |
private $publishercode; | |
private $dbserver; | |
private $dbname; | |
private $dbuser; | |
private $dbpassword; | |
public function __construct($publishercode) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Including citygrid API | |
include "citygrid-places-api-class.php"; | |
/* | |
* class ExternalLisitngService with methods to call citysearch API,update nodes on the basis of data | |
* from listing site,to count reviews from users,return all reviews form users | |
* | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Doubts | |
* 1.there is no more need of lookupListing as we are having standardizeListingFormat() | |
* 2.Will the implementation of applyListingDataToLocalRecord() will go like this.. | |
* 3.staticfunction of a class can access non static class variables?.... | |
* 4.Need documentation for getListingData() | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Doubts | |
* 1.there is no more need of lookupListing as we are having standardizeListingFormat() | |
* 2.Will the implementation of applyListingDataToLocalRecord() will go like this.. | |
* 3.staticfunction of a class can access non static class variables?.... | |
* 4.Need documentation for getListingData() | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost 127.0.0.1:80> | |
DocumentRoot /var/www/newProject/drupal_multisite | |
ServerName www.arpit.com | |
ServerAlias wqizl.webmobilize.mobi | |
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NameVirtualHost *:80 | |
<VirtualHost 127.0.0.1:80> | |
DocumentRoot /var/www/newProject/webmobi | |
ServerName webmobile | |
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NameVirtualHost 127.0.0.1:80 | |
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
DocumentRoot /var/www | |
<Directory /> | |
Options FollowSymLinks | |
AllowOverride None | |
</Directory> | |
<Directory /var/www/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Implementation of hook_ca_action(). | |
*/ | |
function webmobilize_ca_action() { | |
$order_arg = array( | |
'#entity' => 'uc_order', | |
'#title' => t('Order'), | |
); |
OlderNewer