Add field name+surname+date birthday in form liferay 7 - database

I would like to add to my Form on Liferay 7, 3 basic self compiled fields so that you can see the name, the surname and the date of birth. In addition, where can I insert these fields? In which file?
I’m using the form with workflow single approver.

ok as far as I know the portlet is configured in edit mode ..
in combination with this
Note: By default, form entries are stored in Liferay’s database using
JSON format. If you navigate to Form Settings (click the Options
(icon-options.png) button → Settings), you’ll see that the only
storage option is JSON. Keep in mind that developers can implement
their own storage types if JSON is not desirable. If they do, the
option will appear here in Form Settings. See the tutorial on custom
storage types (not yet written) for more information
and that How to use custom storage type for liferay 7 forms? , I would look in the database table of DDMContent class
https://dev.liferay.com/discover/portal/-/knowledge_base/7-0/creating-advanced-forms

Related

How do I link a Wagtail custom form to its output?

When a custom form is created in Wagtail, I can see that it stores in the DB. What I'm not clear on is how to make it so that the admin UI contains the results in some manner. (A new link which lets you download a CSV would be fine, but I don't see how to do that)
How do I allow admin users the ability to see the results of the custom forms? Is this library the only way?
Once you create your first form page (i.e. a page of any page type that subclasses AbstractForm), a 'Forms' item will automatically appear in the left menu of the Wagtail admin. This provides a listing of all the form pages that exist on the site, allowing you to access the results of each one and download them as a CSV.

Drupal : How to export post from drupal 7 to Excel

I've inherited a Drupal site. I need to extract the post data only post title and url of it, out of the site to be able to import it into a different system, but I've never used Drupal and the site is live so I need to tread carefully in order to extract the data without affecting the site.
I try use this Export But canot understan use it, Sow How can i do that. and if any code to export data without modules or views tell me
So, How can export all post from my site that created after 1/1/2014
This is quite easy with drupal views.
Download and enable views, views excel import. -
http://drupal.org/project/views,
https://www.drupal.org/project/views_export_xls
Create an new views page (structure - views), set filter criteria for the type of content you like and date created criteria, set format to display fields. Add both title and link as fields (remove
wrappers if any).
Once you've completed 1,2 add new display to same view called Feed,
following from the module doc:
Add a new "Feed" display to your view.
Change its style to "XLS file"
Configure the options (such as name, quote, etc.).
Give it a path in the Feed settings such as "path/to/xls".
Optionally, you can choose to attach this to another of your displays by updating the "Attach to:" option in feed settings.
Once you've finished, navigate to the path.

How to migrate webform submissions data from one drupal to another

Hello, I wonder if there is any way to migrate the records of a Webform (data submissions) of a site in Drupal 7 to a previous copy of the same site.
My form includes text fields, images and files, and am aware that the records of the form are not nodes.
For this reason, modules as 'Node Export' do not work (although I tried anyway).
Could anyone guide me to find the solution?
Or give me a place to start?
Have you given Migrate Webform a try yet?
From the project page
It will migrate all nodes of the webform node type (with the default
D6 fields using migrate_d2d backend), all the configuration* of the
webform's settings, the form components, email destinations,
submissions and associated submission data, in addition to any
validation configuration you have (from webform_validation module). It
grabs the "last downloaded" data too, in case your users were
downloading sequential batches since the last time they were on the
site.
Try Webform Import.
Allows delimited data files to be imported as submission (results)
into webforms.
This is useful for importing submissions from other systems in to
Webform. Can also be used to Edit submissions via Export / Import as
long as the CSV has the SID column filled.

Database search field database

I'm looking for a way to create a search box in wordpress, where visitors can search a number from the database. Is this possible? I have several package numbers in my database. I want to give my visitors the ability to search for their package number and request the information that comes with the number.
What you want to do can be done.
I suggest a different approach than using wp-exec. (I just looked at wp-exec website, and that plugin was created for WordPress 1.5, which means it hasn't been updated in about 5 years).
The content you want to display exists entirely outside of WordPress. I suggest you use a custom page template - see
http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates
In this case you would not use WordPress posts or pages or custom post types. On the custom page template you would write (or have written if you don't have the knowhow to do it yourself) PHP code to extract the info from the database and display it on a page.
For pages like that you would be using WordPress only as a container within which to display the results - they custom page would appear in the site Nav, The page of results would use the site's theme to display so it looks like the rest of the site.
But the code to display from the database would not use the WordPress loop. It would be PHP / MySQL data retrieval and display code.
I really doubt you will find a plugin that lets you display results from an external database, formatted the way you want them to appear. The reason is every external database is different, has different tables and table structures. And no two sites will want the external data visually displayed in the same way. So there is little generalization to encapsulate in a plugin as everyone wants it different.
I've created pages on some sites along the lines of what you want to do thus I know it can be done. But it requires writing custom code.

Make web form that outputs multiple pdf among other things

I'm writing contracts by hand along with itineraries that contain much of the same data. Is there a way to do the following...
web form that will fill the fields of my contract and outputs in .pdf format
button that gives the option to also output the data in the form of my itinerary layout in .pdf
save various details to a database.
what tutorials might be useful to me? what videos should i be watching to steer me down the right path?
Many thanks!
This looks very much like an application for a server-side form filling tool. The tool of choice would be FDFMerge by Appligent.
A typical workflow would be as follows:
• you have a web form where the user fills in the required information
• user submits the web form to your server where the data gets filled into a database
• selects are made in the database, bringing together the data for a specific document
• assemble the result of the selects into an FDF file
• the base form is filled with the data, using the above mentioned tool
• the filled document(s) is/are made available for the user
And that should do it.

Resources