Subversion Repositories munaweb

Rev

Rev 131 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 131 Rev 144
Line 17... Line 17...
17
  $hostname = $config[$site]['hostName'];
17
  $hostname = $config[$site]['hostName'];
18
  $apiVersion = $config[$site]['apiVersion'];
18
  $apiVersion = $config[$site]['apiVersion'];
19
  $apikey = $config[$site]['apiKey'];
19
  $apikey = $config[$site]['apiKey'];
20
  $password = $config[$site]['password'];
20
  $password = $config[$site]['password'];
21
  $sharedSecret = $config[$site]['sharedSecret'];
21
  $sharedSecret = $config[$site]['sharedSecret'];
22
  $shopifyAdminUrl = "https://" . $apikey . ":" . $password . '@' . $hostname . "/admin/"; . $apiVersion . '/';
22
  $shopifyAdminUrl = "https://" . $apikey . ":" . $password . '@' . $hostname . "/admin/";
23
 
23
 
24
  $fromEmail = $config['settings']['fromEmail'];
24
  $fromEmail = $config['settings']['fromEmail'];
25
	$toEmail = $config['settings']['toEmail'];
25
	$toEmail = $config['settings']['toEmail'];
26
}
26
}
27
 
27