Skip to content

Instantly share code, notes, and snippets.

@Burick
Created September 26, 2016 20:42
Show Gist options
  • Save Burick/d0598f926e768ca39f69cca6748b48ea to your computer and use it in GitHub Desktop.
Save Burick/d0598f926e768ca39f69cca6748b48ea to your computer and use it in GitHub Desktop.
Если есть дети то возвращает стрелку сниппет для ево
<?php
if(!isset($parent))$parent=$modx->documentObject['id'] ;
$table_name = $modx->db->config['table_prefix'].'site_content';
$result = $modx->db->query( "SELECT COUNT(*) FROM $table_name WHERE parent='".$parent."' AND published='1' AND hidemenu='0'" );
$total_rows = $modx->db->getRow( $result );
if( $total_rows["COUNT(*)"] != 0)
return '&nbsp;&#8594;';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment