PluginProbe ʕ •ᴥ•ʔ
VikAppointments Services Booking Calendar / trunk
VikAppointments Services Booking Calendar vtrunk
trunk 1.2.17 1.2.18 1.2.19
vikappointments / admin / models / orderstatus.php
vikappointments / admin / models Last commit date
apiban.php 4 years ago apilog.php 2 years ago apiplugin.php 4 years ago apiuser.php 2 years ago apiuseroptions.php 2 years ago backup.php 4 months ago caldays.php 1 month ago calendar.php 1 month ago city.php 4 years ago closure.php 1 month ago configapp.php 4 years ago configcldays.php 4 years ago configcron.php 4 years ago configemp.php 4 years ago configsmsapi.php 4 years ago configuration.php 4 months ago conversion.php 4 years ago country.php 2 years ago coupon.php 2 years ago couponemployee.php 4 years ago coupongroup.php 2 years ago couponservice.php 4 years ago cronjob.php 2 years ago cronjoblog.php 4 years ago customer.php 4 months ago customf.php 2 years ago customfservice.php 4 years ago customizer.php 4 years ago empgroup.php 2 years ago employee.php 2 years ago empsettings.php 4 years ago file.php 4 years ago findreservation.php 1 month ago group.php 2 years ago import.php 4 years ago index.html 4 years ago invoice.php 1 month ago langcustomf.php 4 years ago langempgroup.php 4 years ago langemployee.php 4 years ago langgroup.php 4 years ago langmedia.php 4 years ago langoption.php 2 years ago langoptiongroup.php 4 years ago langoptionvar.php 4 years ago langpackage.php 4 years ago langpackgroup.php 4 years ago langpayment.php 4 years ago langservice.php 4 years ago langstatuscode.php 4 years ago langsubscr.php 4 years ago langtax.php 2 years ago langtaxrule.php 4 years ago location.php 2 years ago mailtext.php 2 years ago makerecurrence.php 1 month ago media.php 2 years ago multiorder.php 1 month ago option.php 1 year ago optiongroup.php 2 years ago optionvar.php 1 year ago orderstatus.php 2 years ago package.php 2 years ago packageservice.php 4 years ago packgroup.php 2 years ago packorder.php 2 years ago packorderitem.php 1 month ago payment.php 2 years ago rate.php 2 years ago reportsemp.php 4 months ago reportsser.php 4 months ago reservation.php 1 month ago resoptassoc.php 2 years ago restriction.php 2 years ago review.php 3 years ago serempassoc.php 1 year ago seroptassoc.php 4 years ago serrateassoc.php 4 years ago serrestrassoc.php 4 years ago service.php 2 years ago state.php 2 years ago statswidget.php 2 years ago statuscode.php 2 years ago subscription.php 1 month ago subscrorder.php 1 month ago tag.php 4 years ago tax.php 2 years ago taxrule.php 2 years ago updateprogram.php 4 years ago usernote.php 2 years ago waitinglist.php 1 month ago webhook.php 1 year ago worktime.php 1 month ago
orderstatus.php
99 lines
1 <?php
2 /**
3 * @package VikAppointments
4 * @subpackage core
5 * @author E4J s.r.l.
6 * @copyright Copyright (C) 2021 E4J s.r.l. All Rights Reserved.
7 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
8 * @link https://vikwp.com
9 */
10
11 // No direct access
12 defined('ABSPATH') or die('No script kiddies please!');
13
14 VAPLoader::import('libraries.mvc.model');
15
16 /**
17 * VikAppointments order status model.
18 *
19 * @since 1.7
20 */
21 class VikAppointmentsModelOrderstatus extends JModelVAP
22 {
23 /**
24 * Basic save implementation.
25 *
26 * @param mixed $data Either an array or an object of data to save.
27 *
28 * @return mixed The ID of the record on success, false otherwise.
29 */
30 public function save($data)
31 {
32 $data = (array) $data;
33
34 if (empty($data['id']))
35 {
36 $dbo = JFactory::getDbo();
37
38 /**
39 * Check whether the last order status registered for the given order owns
40 * the same status code. In that case, instead of creating a new record, we
41 * should update the latest one. This is actually a workaround used to
42 * prevent the creation of duplicate order statuses.
43 *
44 * @since 1.7
45 */
46 $q = $dbo->getQuery(true)
47 ->select($dbo->qn(array('id', 'status')))
48 ->from($dbo->qn('#__vikappointments_order_status'))
49 ->where($dbo->qn('id_order') . ' = ' . (int) @$data['id_order'])
50 ->where($dbo->qn('type') . ' = ' . $dbo->q(@$data['type']))
51 ->order($dbo->qn('id') . ' DESC');
52
53 $dbo->setQuery($q, 0, 1);
54 $prev = $dbo->loadObject();
55
56 // make sure the status didn't change
57 if ($prev && $prev->status == @$data['status'])
58 {
59 // just do an update
60 $data['id'] = $prev->id;
61 }
62 }
63
64 // attempt to save the order status
65 $id = parent::save($data);
66
67 if (!$id)
68 {
69 // an error occurred, do not go ahead
70 return false;
71 }
72
73 // get array data and cast to object for backward compatibility
74 $saveData = (object) $this->getData();
75
76 // trigger change event only while creating a new order status
77 if (empty($data['id']))
78 {
79 // get rid of any underscore
80 $type = str_replace('_', '', $data['type']);
81
82 /**
83 * Trigger event to let the plugins be notified every time the status
84 * of the orders change. The event name is based on the instance
85 * type, such as "onStatusChangeReservation".
86 *
87 * @param object $data The order status details.
88 *
89 * @return void
90 *
91 * @since 1.6.6
92 */
93 VAPFactory::getEventDispatcher()->trigger('onStatusChange' . ucfirst($type), array($saveData));
94 }
95
96 return $id;
97 }
98 }
99