UBB.Dev
In ubb 7.7.4 even if I set cp access to 0 they still get a menu item that displays the control panel link.
How do I block them completely from the control panel.
Moderators need access to the Control Panel in order to utilize the approve posts tool (and manage members if they have access); this is why they get a link to the Control Panel, otherwise you'd have to just edit it out.
Okay more details.
It is the dashboard part that needs to be turned off if not easy to block the control panel
The part that displays forum/server stats. The owner does not want any numbers showing for moderators.
I mean the open/close board area is gone for mods . Is there a way to stop the display of all the other stats.
That is not a stock behavior or option; your client is welcome to modify the Control Panel to their hearts content, but modifications are not supported at UBBCentral and you may be asked to revert your changes when seeking official support.

The contents of the landing page in the Control Panel can be located in /admin/dashboard.php and /templates/default/admin/dashboard.tmpl
Originally Posted by Gizmo
That is not a stock behavior or option; your client is welcome to modify the Control Panel to their hearts content, but modifications are not supported at UBBCentral and you may be asked to revert your changes when seeking official support.

The contents of the landing page in the Control Panel can be located in /admin/dashboard.php and /templates/default/admin/dashboard.tmpl

That is why I posted here.

Looking at this, the open/close board line is using UBBPRINT which does not show for mods.
What is the function of UBBPRINT in the scripts.
What does it do?

I assume it is just a placeholder like EOF in the islands.
But what is it purpose.
What type of coding can you post in between those tags.
Originally Posted by Ruben Rocha
I assume it is just a placeholder like EOF in the islands.
But what is it purpose.

It is a php "heredoc"
https://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc

The heredoc syntax is a much cleaner way (useful) to work with multi-line strings and avoid quoting issues. They are a great alternative to quoted strings because of increased readability and maintainability. You don't have to escape quotes and (good) IDEs or text editors will use the proper syntax highlighting.

A very common example: echoing out HTML from within PHP:
Code
$html = <<<HTML
  <div class='something'>
    <ul class='mylist'>
      <li>$something</li>
      <li>$whatever</li>
      <li>$testing123</li>
    </ul>
  </div>
HTML;

// Sometime later
echo $html;

https://stackoverflow.com/questions/5673269/what-is-the-advantage-of-using-heredoc-in-php
Thanks i thought it was a heredoc.
Just wanted to make sure
Made the change easy.
Just added the admin only statement for open/close forum to each item in the dashboard template required.
I hated doing that but that is what was requested.
Originally Posted by Ruben Rocha
I hated doing that but that is what was requested.

"Breaking their forums since 2020" -Ruben

:D
HA HA. That is why I posted here.
He will be sorry when he forgets things like allow mods to process pending members was hidden and then I will forget what I did but oh well that is what he wanted.

Or the story will be the next update when it raises it's head again and he wants it gone. Again I will need to find it.

But to his defense he has had the board since classic and he knows what he wants it to do.
keep "customization notes" for each client, the same way we keep changelogs. it makes it easier to find what was changed and when. then review the notes when upgrading or troubleshooting for anything that your changes may break.

a good plan is to also submit these customization notes with your invoice to the client.
It is the dashboard part that needs to be turned off if not easy to block the control panel
The part that displays forum/server stats. The owner does not want any numbers showing for moderators.
I mean the open/close board area is gone for mods . Is there a way to stop the display of all the other stats.
All of the information needed to modify the dashboard landing page is included in the above posts. Any changes to a stock system are not supported by any way by UBB systems.

Again there's no stock behavior to remove all of the data from the landing page and all of the data can be extrapolated from the main system just by looking at the total members and accounting of how many posts and topics are displayed on the category or form index pages.

Removing that block of links and data you may find your moderators unable to access the approved posts links as well as manage users that have the appropriate permission, this is especially true if one were to remove the links from the sidebar.
© UBB.Developers