I am converting our cms to components. I have created my component objects as:
site.cfc page.cfc template.cfc Each page has to go through an approval
process. My question is: Is it better to put the system logic in a component
into a seperate component called 'system.cfc' utilizing the seperate component
objects such as page.cfc, template.cfc? For example a component called
'system.cfc' which would check if the page is already pending approval, and
update the appropriate table using page.cfc then perform various other actions.
Hope that makes sense, i just want to make sure i am doing this correctly.
Matt