Bartek Kosa
Bartek Kosa

Reputation: 842

How should I name controller file & class in Zend Framework

I want to use two-membered controller names.

'controller' => 'about-us'

But I dont know how should I name controller file and controller class.

About-usController.php

Above doesn't work.

Upvotes: 0

Views: 37

Answers (1)

Tim Fountain
Tim Fountain

Reputation: 33148

The filename should be AboutUsController.php.

Upvotes: 2

Related Questions