Last active
August 29, 2015 14:02
-
-
Save mazuhl/b7bb4cc8d48eb306e68c to your computer and use it in GitHub Desktop.
Get MODx version number from GitHub Master branch and paste into Google Spreadsheet
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
function myFunction() { | |
var response = UrlFetchApp.fetch("http://www.example.com/get-modx-latest-version.php"); | |
SpreadsheetApp.getActiveSheet().getRange('A1').setValue(response.getContentText()); | |
} |
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 | |
header('Content-Type: text/plain'); | |
$input = file_get_contents("https://raw.githubusercontent.com/modxcms/revolution/master/_build/build.xml"); | |
preg_match('/"modx.core.version" value="([^"]*)"/i', $input, $output_array); | |
if ($output_array[1] == "") { | |
echo "ERROR!"; | |
} else { | |
echo $output_array[1]; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I couldn't find anything like an API that I could access to find out what the current version of MODx was, so I pulled this together quickly so I could include the current MODx version number in a Google Spreadsheet:
get-modx-latest-version.php
build.xml
fileCode.gs