获取自定义管理模块中所有类别和子类别的列表

Get list of all categories and subcategories in custom admin module

我使用了下面的代码,但它总是 return 计数 0。

$_helper = Mage::helper('catalog/category');
$_categories = $_helper->getStoreCategories();
echo count($_categories);

这是因为这不适用于管理端模块,还有其他方法吗?

使用下面的代码加载所有类别

$categories = Mage::getModel('catalog/category')->getCollection();
count($categories);