Helmut Granda
learning through interaction
learning through interaction
May 11th
Having the ability to create different users and give each a different role is one of the most important things within a CMS, you need to be able to control all aspects of the site (super users) and also give other users the ability to control display or content within the site without breaking it.
In [...]
May 9th
There are times when you want to allow the Super Admin to edit those extra fields but not the editors/contributors of your site so this is one way to do it:
PHP:
< ?php
/**
* Change the node form
*/
function phptemplate_node_form($form) {
// echo "<div style=’direction:ltr;’>"; dprint_r ($form); echo ”;
// Hide ‘Log message’ text area
$form[’log’][’#access’] = [...]