관리-도구
편집 파일: jsn_utils.php
<?php /* jsn_utils.php @copyright (C) 2006 - 2008 JoomlaShine.com */ defined( '_JEXEC' ) or die( 'Restricted index access' ); function jsnCountPositions($t, $positions){ $positionCount = 0; for($i=0;$i < count($positions); $i++){ if ($t->countModules($positions[$i])) $positionCount++; } return $positionCount; } ?>