C:\xampp\htdocs\landing\wp-content\updraft\plugins-old\totalpoll\src\Poll\Commands\SaveEntry.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php

namespace TotalPoll\Poll\Commands;
defined'ABSPATH' ) && exit();


use 
TotalPoll\Contracts\Entry\Repository;
use 
TotalPoll\Contracts\Poll\Model;
use 
TotalPollVendors\TotalCore\Helpers\Arrays;

class 
SaveEntry extends \TotalPollVendors\TotalCore\Helpers\Command {
    protected 
$poll;
    protected 
$repository;

    
/**
     * SaveEntry constructor.
     *
     * @param Model      $poll
     * @param Repository $repository
     */
    
public function __constructModel $pollRepository $repository ) {
        
$this->poll       $poll;
        
$this->repository $repository;
    }

    
/**
     * Command logic.
     *
     * @return mixed
     */
    
protected function handle() {
        
/**
         * Fires before saving the form entry.
         *
         * @param \TotalPoll\Contracts\Poll\Model $poll Poll model object.
         *
         * @since 4.0.0
         */
        
do_action'totalpoll/actions/before/poll/command/save-log'$this->poll );

        
$entry $this->repository->create(
            [
                
'poll_id' => $this->poll->getId(),
                
'log_id'  => self::getShared'log.id' ),
                
'fields'  => Arrays::apply($this->poll->getForm()->offsetGet'fields' )->toArray(), 'esc_html'),
                
'details' => [],
            ]
        );

        
/**
         * Fires after saving the form entry.
         *
         * @param \TotalPoll\Contracts\Entry\Model $entry Form entry model object.
         * @param \TotalPoll\Contracts\Poll\Model  $poll  Poll model object.
         *
         * @since 4.0.0
         */
        
do_action'totalpoll/actions/after/poll/command/save-entry'$entry$this->poll );

        if ( 
$entry instanceof \TotalPoll\Contracts\Entry\Model ):
            
self::share'entry'$entry );
        endif;

        return 
$entry;
    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586