Skip to content

Instantly share code, notes, and snippets.

@pmfx
Created October 1, 2016 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmfx/edd470563e9415554942cfb4521e0a93 to your computer and use it in GitHub Desktop.
Save pmfx/edd470563e9415554942cfb4521e0a93 to your computer and use it in GitHub Desktop.
Count EvoGallery images MODX snippet.
<?php
$output='0';
if($id){
$table = $modx->getFullTableName( 'portfolio_galleries' );
$query = $modx->db->query('SELECT content_id FROM '.$table.' WHERE content_id='.$id.' ORDER BY sortorder ASC');
$output = mysql_num_rows($query);
}
return $output;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment