<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Roles and Capabilities for Importing/Exporting Entries/Forms the same?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/roles-and-capabilities-for-importingexporting-entriesforms-the-same</link>
		<description>Gravity Support Forums Topic: Roles and Capabilities for Importing/Exporting Entries/Forms the same?</description>
		<language>en-US</language>
		<pubDate>Fri, 17 Apr 2026 05:32:03 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/roles-and-capabilities-for-importingexporting-entriesforms-the-same" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Roles and Capabilities for Importing/Exporting Entries/Forms the same?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/roles-and-capabilities-for-importingexporting-entriesforms-the-same#post-42822</link>
			<pubDate>Thu, 01 Dec 2011 21:24:35 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">42822@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the update.  I agree, and updating the capabilities is something we plan on adding.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>UWEX on "Roles and Capabilities for Importing/Exporting Entries/Forms the same?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/roles-and-capabilities-for-importingexporting-entriesforms-the-same#post-42806</link>
			<pubDate>Thu, 01 Dec 2011 18:47:32 +0000</pubDate>
			<dc:creator>UWEX</dc:creator>
			<guid isPermaLink="false">42806@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Carl -&#60;br /&#62;
It turns out there is yet another hidden capability: gforms_full_access?&#60;/p&#62;
&#60;p&#62;I had to explicitly set that to false in order to make any of the other capabilities even matter, and then it started working. &#60;/p&#62;
&#60;p&#62;As for the import/export capabilities, I really do think there needs to be a distinction between Forms and Entries, so they deserve their own capabilities.  Thanks for looking into it!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Roles and Capabilities for Importing/Exporting Entries/Forms the same?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/roles-and-capabilities-for-importingexporting-entriesforms-the-same#post-42795</link>
			<pubDate>Thu, 01 Dec 2011 17:59:07 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">42795@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It appears new capabilities were not added for exporting forms and importing forms.  We will take a look and see what needs to change to make the capabilities more granular.  Right now it's relying on that capability to show or hide the Import/Export navigation item itself, as well as protecting the content.  &#60;/p&#62;
&#60;p&#62;So we'll have to 1) add the new capabilities specific to export forms and import forms and then 2) make necessary changes where appropriate to support these new capabilities.  We till take a look and include these updates in a future release.  It's too late to include it in the 1.6.2 release which is being wrapped up as I type.&#60;/p&#62;
&#60;p&#62;I don't see anything obviously wrong with the code you are using to set the capabilities.  Nothing changed with the capabilities in 1.6 and we don't have any reports of users having problems using things like the Members plugin to manage capabilities using Gravity Forms v1.6+.&#60;/p&#62;
&#60;p&#62;I would suggest taking a look at the code you have implemented, see if you can figure out what is going on and if you need additional help figuring out the issue with how you are setting capabilities manually... we can dig deeper on it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>UWEX on "Roles and Capabilities for Importing/Exporting Entries/Forms the same?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/roles-and-capabilities-for-importingexporting-entriesforms-the-same#post-42778</link>
			<pubDate>Thu, 01 Dec 2011 17:19:59 +0000</pubDate>
			<dc:creator>UWEX</dc:creator>
			<guid isPermaLink="false">42778@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;On a related note, this custom plugin for denying access to non-network admins has stopped working with the upgrade to 1.6. Any ideas?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;#39;user_has_cap&#38;#39;, &#38;#39;abc_gravity_forms_modifier_capabilities&#38;#39;, 5, 3);
function abc_gravity_forms_modifier_capabilities($allcaps, $cap, $args) {
	if (is_super_admin()) {
		return $allcaps;
	} else {
		$allcaps[&#38;#39;gravityforms_create_form&#38;#39;] = false;
             //few other ones here...
	}
	return $allcaps;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>UWEX on "Roles and Capabilities for Importing/Exporting Entries/Forms the same?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/roles-and-capabilities-for-importingexporting-entriesforms-the-same#post-42768</link>
			<pubDate>Thu, 01 Dec 2011 16:54:31 +0000</pubDate>
			<dc:creator>UWEX</dc:creator>
			<guid isPermaLink="false">42768@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;In our network, we're trying to give some site admins the ability to edit and export ENTRIES, but not deal with the actual forms themselves.  As best I can tell, there is a single capability for all these: gravityforms_export_entries.  This means that if I let someone export entries, they're also allowed to import forms?  These capabilities don't seem like they should be tied together - am I missing something?&#60;/p&#62;
&#60;p&#62;(Also, this page &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Role_Management&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Role_Management&#60;/a&#62; looks a little out of date, because when I dump the capabilities in the network, I'm getting more than are listed here.)&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
