Skip to content

Instantly share code, notes, and snippets.

@muskie9
Created November 10, 2015 02:56
Show Gist options
  • Save muskie9/7ac02c964250d1eb34a5 to your computer and use it in GitHub Desktop.
Save muskie9/7ac02c964250d1eb34a5 to your computer and use it in GitHub Desktop.
<?php
public function CurrentLevel() {
$page = $this->owner;
$level = 1;
while(1) {
if($page->Parent) {
$level++;
$page = $page->Parent();
}else {
return $level;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment