自定义模块的Magento待定/批准系统就像审查模块一样

I am making a custom module where users can upload design content. I need a approval system for the content just like in case of product reviews. They don’t show on the frontend until approved from admin. I need exactly the same functionality. I tried looking at the review module code but I wasn’t able to figure out how to do this. Looks like it has something to do with:

Mage::registry('usePendingFilter');

I tried Google but couldn’t find much or anything really. Please help me out with this one.

I appreciate all the help

Thanks!

The code you are looking for is in app/code/core/Mage/Rating. The registry you are referring to is Magento's Global Variable Registry. Good luck!