Date index for Mar 2003
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [achievo] Overloading problem
Peter C. Verhage wrote:
$this->m_type = "unit_project";
$this->m_module = "";
You need to set this in the init() method, because else it will be
overwritten by ATK.
Do you mean something like this?
function unit_project() {
$this->project();
// $this->m_type = "unit_project";
$this->setSecurityAlias("project");
}
function init() {
$this->m_type = "";
parent::init();
}