for a new project I need to strongly restrict the options, editors have in modifying pages. Basically, they should only be allowed to edit the content but NOT the content type, menu text etc.

Since there is no option in the backend as far as I know, to do that I thought it wouldn't be a big deal to "just" modify the PHP-file that sets this page. But I noticed it seems to be a bit more than just deleting a few -tags

I guess I need to modify the file /admin/editcontent.php somwhere here:
Code:
Code: Select all
$contentarray = $contentobj->EditAsArray(false, $currenttab, $adminaccess);
for($i=0;$i<count($contentarray);$i++)
{
?>
<div class="pageoverflow">
<div class="pagetext"><?php echo $contentarray[$i][0]; ?></div>
<div class="pageinput"><?php echo $contentarray[$i][1]; ?></div>
</div>
<?php
}
THANK YOU!!