MetaAction::trigger_invalid_property_error PHP Method

trigger_invalid_property_error() protected method

Registers an error message in the CampTemplate singleton object.
protected trigger_invalid_property_error ( string $p_property, mixed $p_smarty = null )
$p_property string
$p_smarty mixed
    protected function trigger_invalid_property_error($p_property, $p_smarty = null)
    {
        $errorMessage = INVALID_PROPERTY_STRING . " {$p_property} " . OF_OBJECT_STRING . ' ' . $this->m_name;
        CampTemplate::singleton()->trigger_error($errorMessage, $p_smarty);
    }