Archived talk

Difference between revisions of "Developing a MVC Component/Adding ACL"

From Joomla! Documentation

(→‎Delet dosn't work: new section)
Line 22: Line 22:
  
 
--[[User:A2Ggeir|A2Ggeir]] 12:02, 7 December 2010 (UTC)
 
--[[User:A2Ggeir|A2Ggeir]] 12:02, 7 December 2010 (UTC)
 +
 +
== Delet dosn't work ==
 +
 +
when you want to delete a message it goes wrong an the message appears:
 +
 +
500 - Es ist ein Fehler aufgetreten
 +
 +
Layout „default“ nicht gefunden
 +
 +
 +
downt know why its not working... maybee some can check this out.
 +
 +
Greetz

Revision as of 10:23, 11 April 2011

Somehow the ACL doesn't work on Edit permission for me. It shows both Save & New and Save as Copy buttons when it has no create rights. Gone through the code twice, but cannot see anything wrong with it... Anybody else have same problem? --A2Ggeir 10:19, 6 December 2010 (UTC)

Did a little debug and it seems the values from function canDo() in Helper does not return the right values when it is in edit view.

Result when in listview:

  'core.admin' => NULL,
  'core.manage' => true,
  'core.create' => false,
  'core.edit' => true,
  'core.delete' => false,

Result when in editview:

  'core.admin' => NULL,
  'core.manage' => NULL,
  'core.create' => true,
  'core.edit' => true,
  'core.delete' => true,

--A2Ggeir 12:02, 7 December 2010 (UTC)

Delet dosn't work[edit]

when you want to delete a message it goes wrong an the message appears:

500 - Es ist ein Fehler aufgetreten

Layout „default“ nicht gefunden


downt know why its not working... maybee some can check this out.

Greetz