"View" keyword with MVC?

Permalink
I'm having trouble pinning this down. Basically I have a controller with different methods to dictate/map to multiple single pages. This works mostly, except this one single page which is using the default view() method.

Here's what the directory looks like:

/single_pages
member.php
/members
viewMember.php
viewProfile.php
/controllers
members.php

The members controller has a method view() that displays the member.php file. Then another method to display a member's details called viewMember() which maps to members/viewMember.php.

Then another method called viewProfile() that should map to viewProfile.php. However it's the view() method that's mapping to that single page. The page loads fine, but it can't pull information from the viewProfile() method. I had thought originally that "view" was a type of keyword the dispatcher uses to figure out how to show single pages with a controller, but apparently not. I realize also that Concrete does MVC differently than straight up Zend MVC, but I can't quite figure out what's happening here.

Any advice appreciated.

jyncka