<?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: pdf certificate generation</title>
		<link>https://legacy.forums.gravityhelp.com/topic/pdf-certificate-generation</link>
		<description>Gravity Support Forums Topic: pdf certificate generation</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 08:25:48 +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/pdf-certificate-generation" rel="self" type="application/rss+xml" />

		<item>
			<title>fr35ht on "pdf certificate generation"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pdf-certificate-generation#post-44009</link>
			<pubDate>Wed, 14 Dec 2011 08:01:05 +0000</pubDate>
			<dc:creator>fr35ht</dc:creator>
			<guid isPermaLink="false">44009@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Great thanks for the speedy reply Chris,&#60;br /&#62;
From following the previous reply links,  I understand that the form data can be accessed via the $entry object.&#60;br /&#62;
So my guess for the syntax would be:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;add_action (&#38;#39;gform_after_submission&#38;#39; , array ( &#38;#39;className&#38;#39; , &#38;#39;methodName&#38;#39; ) ;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;or more specifically:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action (&#38;#39;gform_after_submission_my_form_id&#38;#39;, array ( &#38;#39;$entry&#38;#39;, &#38;#39;method_pull_out_my_data&#38;#39; )) ;
  function (&#38;#39;method_pull_out_my_data) ;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Does that look about right?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "pdf certificate generation"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pdf-certificate-generation#post-43911</link>
			<pubDate>Tue, 13 Dec 2011 10:27:03 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">43911@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yes, and yes.  The entry has been created, which means it is in the database and you can access it with the gform_after_submission hook.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fr35ht on "pdf certificate generation"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pdf-certificate-generation#post-43893</link>
			<pubDate>Tue, 13 Dec 2011 07:07:10 +0000</pubDate>
			<dc:creator>fr35ht</dc:creator>
			<guid isPermaLink="false">43893@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Very helpful, thank you David.&#60;br /&#62;
A quick question:&#60;br /&#62;
Can I clarify that &#34;entry creation&#34; mentioned in the link means that the data has been entered into the relevant SQL database? In other words the form input has been saved in the database by the time the hook 'form_after_submission' is called?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "pdf certificate generation"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pdf-certificate-generation#post-43833</link>
			<pubDate>Mon, 12 Dec 2011 18:26:00 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">43833@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi fr35ht,&#60;/p&#62;
&#60;p&#62;Here is some documentation on the gform_after_submission hook and what data is available to this hook:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_after_submission&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_after_submission&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;After you've read through the documentation, let me know if you have any other questions. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fr35ht on "pdf certificate generation"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/pdf-certificate-generation#post-43825</link>
			<pubDate>Mon, 12 Dec 2011 18:02:30 +0000</pubDate>
			<dc:creator>fr35ht</dc:creator>
			<guid isPermaLink="false">43825@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I'm trying to generate a user specific pdf certificate once a form has been completed.&#60;/p&#62;
&#60;p&#62; I understand (from reading &#34;PDF Generation Add-On&#34; topic) that using the (?action) hook 'gform_after_submission' will access my form data at the right point to pull the data out.&#60;/p&#62;
&#60;p&#62;I'm trying to figure out how to pull the data out!&#60;br /&#62;
Would the basic code be something like:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
do_action ( &#38;#39;gform_after_submission&#38;#39;, $function_get_my_data_out )
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then send the data in array form to the pdf generator.&#60;/p&#62;
&#60;p&#62;- is there anyone out there who knows how to do this?&#60;/p&#62;
&#60;p&#62;Grateful for any help.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
