This file contains hidden or 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 | |
namespace App\Http\Controllers\Auth; | |
use App\User; | |
use Validator; | |
use Auth; | |
use Session; | |
use App\Http\Controllers\Controller; | |
use Illuminate\Http\Request; |
This file contains hidden or 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
// Burdaki gibi çağırman lazım | |
$fields = array('searchTerm', 'clicks', 'impressions', 'convertedClicks', 'cost', 'totalConvValue', 'day'); | |
$parameters['ignoreDimensions'] = array('day'); | |
$searchTerms = AdProReports::DownloadSearchTermReport($fields,30, $parameters); | |
//Bu da search term methodu | |
public static function DownloadSearchTermReport($fields, $range = 30, $parameters = array()){ | |
// Type of the report. |
NewerOlder