×
Please submit new Bug Reports on GitHub: github.com/Jensen-Technologies/component-creator-issues/issues
front end component view
Matthew
New Member
Posts: 12
9 lata 6 miesiąc temu #789
przez Matthew
front end component view was created by Matthew
Hi,
I would like users on the front end to only view their own created data - is that possible to limit via the component creator or do I have to edit the model?
Thanks,
Mat
I would like users on the front end to only view their own created data - is that possible to limit via the component creator or do I have to edit the model?
Thanks,
Mat
Proszę Zaloguj lub Zarejestruj się, aby dołączyć do konwersacji.
Randy Carey
Junior Member
Posts: 23
9 lata 6 miesiąc temu - 9 lata 6 miesiąc temu #794
przez Randy Carey
Replied by Randy Carey on topic front end component view
You can edit/override the component's template to accomplish this. Use a line of code like thisto evaluate each item within the foreach loop. if this is condition is false, do not process the code that displays the item.
A very concise piece of code that accomplishes this isand this would be placed at the start of the foreach loop. If the user is not the same as the user who created the item, the continue skips further processing of this item and the foreach continues with the next item.
$belongs_to_user = JFactory::getUser()->id == $item->created_by;
A very concise piece of code that accomplishes this is
if(! JFactory::getUser()->id == $item->created_by){
continue;
}
Ostatnia9 lata 6 miesiąc temu edycja: Randy Carey od.
Za tę wiadomość podziękował(a): Matthew
Proszę Zaloguj lub Zarejestruj się, aby dołączyć do konwersacji.
Eduardo Mena
Junior Member
Posts: 31
9 lata 6 miesiąc temu - 9 lata 6 miesiąc temu #816
przez Eduardo Mena
Replied by Eduardo Mena on topic front end component view
Randy's answer will work
But it's cleaner if you do it from the model.
Go to /components/com_YOUR_COMPONENT/models/EXAMPLE.php
Look for the getListQuery() method and then look for this
And change to thisUsers that are not allowed to edit state will only see their own items
But it's cleaner if you do it from the model.
Go to /components/com_YOUR_COMPONENT/models/EXAMPLE.php
Look for the getListQuery() method and then look for this
if (!JFactory::getUser()->authorise('core.edit.state', 'com_example')){
$query->where('a.state = 1');
}
And change to this
if (!JFactory::getUser()->authorise('core.edit.state', 'com_example')){
$query->where('a.state = 1 AND '.$db->quoteName('created_by').' = '.JFactory::getUser()->get('id'));
}
Ostatnia9 lata 6 miesiąc temu edycja: Eduardo Mena od.
Proszę Zaloguj lub Zarejestruj się, aby dołączyć do konwersacji.
Czas generowania strony: 0.049 s.