<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
	<channel>
		<title>cotonti.com : Custom Plugin to be accessed by Moderator</title>
		<link>https://www.cotonti.com</link>
		<description>Last topic posts</description>
		<generator>Cotonti</generator>
		<language>en</language>
		<pubDate>Mon, 13 Apr 2026 02:17:25 -0000</pubDate>

		<item>
			<title>medj</title>
			<description><![CDATA[Okay, thanks for the help guys.<br />
I figured out an alternative method to let my staff edit a part of the site by just including a certain file in another folder.<br />
<br />
By the way, does cotonti have the ability to do what I was explaining above?]]></description>
			<pubDate>Fri, 20 Feb 2009 02:02:47 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2109&d=0#post8373]]></link>
		</item>
		<item>
			<title>Kilandor</title>
			<description><![CDATA[Correct you can't give someone specific access to anything in admin right now, either they get access to everything, or nothing.<br />
<br />
For plugins W/A(1-5) do nothing unless you code them to. <br />
Read, allows users to access the plugin, if they do not have atleast R, the hook/plugin will not load for them.<br />
<br />
But you can create a standalone plugin, and use a SQL query to update the config.<br />
That is the only way to allow someone to modify a config without giving them access to the admin panel.]]></description>
			<pubDate>Tue, 17 Feb 2009 14:35:00 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2109&d=0#post8205]]></link>
		</item>
		<item>
			<title>medj</title>
			<description><![CDATA[So when you click on the rights of a plugin and you see Administrator, Moderator, Member, etc. with all the checkboxes for Read, Write and Admin privileges, what exactly is the point of all this?]]></description>
			<pubDate>Tue, 17 Feb 2009 05:44:51 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2109&d=0#post8178]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[That is quite tricky and it is not possible to give access to a specific plugin configuration. What is usually done in this case, is a special editor in the plugin itself, and all the checks are performed in code.]]></description>
			<pubDate>Tue, 17 Feb 2009 03:10:01 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2109&d=0#post8163]]></link>
		</item>
		<item>
			<title>medj</title>
			<description><![CDATA[Hmm, I think I didn't explain good enough.<br />
<br />
My plugin works fine in terms of how it works on my site and I'm also able to edit the field in my admin panel in the plugins category.<br />
<br />
The only thing I was hoping to do was give the Group &quot;Moderators&quot; to be able to go into the admin panel and edit this one plugin. Specifically to edit the text field which I made using the code below in the setup file:<br />
<br />
<pre class="code">&#091;BEGIN_SED_EXTPLUGIN_CONFIG&#093;
feature=01:text:::This is the HTML code for the announcement box
&#091;END_SED_EXTPLUGIN_CONFIG&#093;</pre>
<br />
From what you wrote above, I think you thought that I wanted a certain thing to show on the site for moderators.<br />
<br />
I would almost go as far as to say that there could be a bug here only because I have the privileges set so that Moderators should be able to edit &quot;admin&quot; the plugin yet access is still blocked to the plugin page from a Moderator level.<br />
<br />
Thanks for your reply though.]]></description>
			<pubDate>Tue, 17 Feb 2009 01:48:46 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2109&d=0#post8159]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[I mean you need to check A permission for that action manually:<br />
<div class="highlight"><pre class="php">if(sed_auth('plug', 'yourplugin', 'A'))
{
  // Some actions here
}
else
{
  // You are not allowed to do this
}</pre></div>]]></description>
			<pubDate>Mon, 16 Feb 2009 21:41:40 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2109&d=0#post8146]]></link>
		</item>
		<item>
			<title>medj</title>
			<description><![CDATA[Okay, I'll be honest, I don't know exactly what you mean by that.<br />
Is this something I should be calling in the setup file or in the main file?<br />
<br />
By the way, I have these in the setup. <br />
<br />
Auth_guests=R<br />
Lock_guests=RW12345A<br />
Auth_members=RW<br />
Lock_members=12345<br />
<br />
I just duplicated the settings from another plugin.]]></description>
			<pubDate>Mon, 16 Feb 2009 16:10:10 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2109&d=0#post8119]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[Do you call sed_auth() correctly in it?]]></description>
			<pubDate>Mon, 16 Feb 2009 15:44:46 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2109&d=0#post8115]]></link>
		</item>
		<item>
			<title>medj</title>
			<description><![CDATA[Hey everyone, I would have asked this on neocrome forums, but I tend to get slow response. I hope this question will be simple for you guys to answer, but I can't figure out why this won't work for me.<br />
<br />
First of all, I am using Seditio.<br />
I made a plugin for my site and it has a setup field in the admin of the plugin to change some HTML code.<br />
<br />
I even changed the Auth settings in the setup.php file to enable moderators of the site to be able to change this HTML code, or so I thought.<br />
<br />
Even though the plugin has Moderator admin privileges, my moderators are not able to access this plugin.<br />
<br />
Can anyone offer any insight on this?<br />
<br />
Thanks.]]></description>
			<pubDate>Mon, 16 Feb 2009 15:21:11 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&q=2109&d=0#post8113]]></link>
		</item>
	</channel>
</rss>