PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
weforms
/
includes
<?php /** * The Entry Manager Class * * @since 1.1.0 */ class WeForms_Form_Entry_Manager { /** * The form id * * @var int */ private $id = 0; /** * The form object * * @var \WeForms_Form */ private $form; /** * The constructor * * @param int $form_id * @param \WeForms_Form $form */ public function __construct( $form_id, $form ) { $this->id = $form_id; $this->form = $form; } /** * Get all the form entries * * @return array */ public function all() { return weforms_get_form_entries( $this->id ); } /** * Get a single entry * * @param int $entry_id * * @return mixed */ public function get( $entry_id ) { return new WeForms_Form_Entry( $entry_id, $this->form ); } }
[+]
..
[-] class-form-entry-manager.php
[edit]
[-] class-frontend-form.php
[edit]
[-] class-ajax-upload.php
[edit]
[+]
importer
[-] class-ajax.php
[edit]
[+]
api
[+]
fields
[-] class-notification.php
[edit]
[-] class-form-entry.php
[edit]
[-] class-importer-manager.php
[edit]
[+]
compat
[-] functions.php
[edit]
[-] class-field-manager.php
[edit]
[+]
library
[-] class-integration-manager.php
[edit]
[+]
email
[-] class-form-widget.php
[edit]
[+]
templates
[-] class-weforms-api.php
[edit]
[-] class-template-manager.php
[edit]
[+]
integrations
[-] class-installer.php
[edit]
[-] class-scripts-styles.php
[edit]
[-] country-list.php
[edit]
[-] class-form.php
[edit]
[-] class-form-manager.php
[edit]
[-] class-upgrades.php
[edit]
[-] class-emailer.php
[edit]
[-] class-form-preview.php
[edit]
[+]
admin
[-] class-dokan-integration.php
[edit]