436 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			436 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/*********************************************************************************
 | 
						|
 *
 | 
						|
 * TimeTrex is a Workforce Management program developed by
 | 
						|
 * TimeTrex Software Inc. Copyright (C) 2003 - 2021 TimeTrex Software Inc.
 | 
						|
 *
 | 
						|
 * This program is free software; you can redistribute it and/or modify it under
 | 
						|
 * the terms of the GNU Affero General Public License version 3 as published by
 | 
						|
 * the Free Software Foundation with the addition of the following permission
 | 
						|
 * added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED
 | 
						|
 * WORK IN WHICH THE COPYRIGHT IS OWNED BY TIMETREX, TIMETREX DISCLAIMS THE
 | 
						|
 * WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
 | 
						|
 *
 | 
						|
 * This program is distributed in the hope that it will be useful, but WITHOUT
 | 
						|
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 | 
						|
 * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
 | 
						|
 * details.
 | 
						|
 *
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU Affero General Public License along
 | 
						|
 * with this program; if not, see http://www.gnu.org/licenses or write to the Free
 | 
						|
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 | 
						|
 * 02110-1301 USA.
 | 
						|
 *
 | 
						|
 *
 | 
						|
 * You can contact TimeTrex headquarters at Unit 22 - 2475 Dobbin Rd. Suite
 | 
						|
 * #292 West Kelowna, BC V4T 2E9, Canada or at email address info@timetrex.com.
 | 
						|
 *
 | 
						|
 *
 | 
						|
 * The interactive user interfaces in modified source and object code versions
 | 
						|
 * of this program must display Appropriate Legal Notices, as required under
 | 
						|
 * Section 5 of the GNU Affero General Public License version 3.
 | 
						|
 *
 | 
						|
 *
 | 
						|
 * In accordance with Section 7(b) of the GNU Affero General Public License
 | 
						|
 * version 3, these Appropriate Legal Notices must retain the display of the
 | 
						|
 * "Powered by TimeTrex" logo. If the display of the logo is not reasonably
 | 
						|
 * feasible for technical reasons, the Appropriate Legal Notices must display
 | 
						|
 * the words "Powered by TimeTrex".
 | 
						|
 *
 | 
						|
 ********************************************************************************/
 | 
						|
 | 
						|
 | 
						|
/**
 | 
						|
 * @package API\Users
 | 
						|
 */
 | 
						|
class APIUserDefault extends APIFactory {
 | 
						|
	protected $main_class = 'UserDefaultFactory';
 | 
						|
 | 
						|
	/**
 | 
						|
	 * APIUserDefault constructor.
 | 
						|
	 */
 | 
						|
	public function __construct() {
 | 
						|
		parent::__construct(); //Make sure parent constructor is always called.
 | 
						|
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Get default UserDefault data for creating new UserDefaultes.
 | 
						|
	 * @return array
 | 
						|
	 */
 | 
						|
	function getUserDefaultDefaultData() {
 | 
						|
		$company_obj = $this->getCurrentCompanyObject();
 | 
						|
		$user_obj = $this->getCurrentUserObject();
 | 
						|
		$user_preference_obj = $this->getCurrentUserPreferenceObject();
 | 
						|
 | 
						|
		//Permissions
 | 
						|
		$pclf = TTnew( 'PermissionControlListFactory' ); /** @var PermissionControlListFactory $pclf */
 | 
						|
		$pclf->getByCompanyIdAndLevel( $company_obj->getID(), 10, 1, null, null, [ 'level' => 'desc' ] );
 | 
						|
		if ( $pclf->getRecordCount() > 0 ) {
 | 
						|
			$permission_control_id = $pclf->getCurrent()->getID();
 | 
						|
		} else {
 | 
						|
			$permission_control_id = TTUUID::getZeroID();
 | 
						|
		}
 | 
						|
 | 
						|
		//Terminated Permissions
 | 
						|
		$pclf = TTnew( 'PermissionControlListFactory' ); /** @var PermissionControlListFactory $pclf */
 | 
						|
		$pclf->getByCompanyIdAndLevel( $company_obj->getID(), 5, 1, null, null, [ 'level' => 'desc' ] );
 | 
						|
		if ( $pclf->getRecordCount() > 0 ) {
 | 
						|
			$terminated_permission_control_id = $pclf->getCurrent()->getID();
 | 
						|
		} else {
 | 
						|
			$terminated_permission_control_id = TTUUID::getZeroID();
 | 
						|
		}
 | 
						|
 | 
						|
		//Get Pay Period Schedule
 | 
						|
		$ppslf = TTNew( 'PayPeriodScheduleListFactory' ); /** @var PayPeriodScheduleListFactory $ppslf */
 | 
						|
		$ppslf->getByCompanyId( $company_obj->getID() );
 | 
						|
		if ( $ppslf->getRecordCount() == 1 ) {
 | 
						|
			$pay_period_schedule_id = $ppslf->getCurrent()->getID();
 | 
						|
		} else {
 | 
						|
			$pay_period_schedule_id = null;
 | 
						|
		}
 | 
						|
 | 
						|
		//Get Policy Group
 | 
						|
		$pglf = TTNew( 'PolicyGroupListFactory' ); /** @var PolicyGroupListFactory $pglf */
 | 
						|
		$pglf->getByCompanyId( $company_obj->getID() );
 | 
						|
		if ( $pglf->getRecordCount() == 1 ) {
 | 
						|
			$policy_group_id = $pglf->getCurrent()->getID();
 | 
						|
		} else {
 | 
						|
			$policy_group_id = null;
 | 
						|
		}
 | 
						|
 | 
						|
		Debug::Text( 'Getting UserDefault default data...', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
 | 
						|
		$data = [
 | 
						|
				'company_id'       => $company_obj->getId(),
 | 
						|
				'legal_entity_id'  => $user_obj->getLegalEntity(),
 | 
						|
				'display_order'    => 100,
 | 
						|
 | 
						|
				//Employee Identification
 | 
						|
				'currency_id'                      => $user_obj->getCurrency(),
 | 
						|
				'policy_group_id'                  => $policy_group_id,
 | 
						|
				'pay_period_schedule_id'           => $pay_period_schedule_id,
 | 
						|
				'permission_control_id'            => $permission_control_id,
 | 
						|
				'terminated_permission_control_id' => $terminated_permission_control_id,
 | 
						|
 | 
						|
				//Preferences
 | 
						|
				'time_zone'        => $user_preference_obj->getTimeZone(),
 | 
						|
				'language'         => 'en',
 | 
						|
				'date_format'      => $user_preference_obj->getDateFormat(),
 | 
						|
				'time_format'      => $user_preference_obj->getTimeFormat(),
 | 
						|
				'time_unit_format' => $user_preference_obj->getTimeUnitFormat(),
 | 
						|
				'distance_format'  => $user_preference_obj->getDistanceFormat(), //Kilometers
 | 
						|
				'items_per_page'   => $user_preference_obj->getItemsPerPage(),
 | 
						|
				'start_week_day'   => $user_preference_obj->getStartWeekDay(),
 | 
						|
 | 
						|
				//Contact Info
 | 
						|
				'city'        => $this->getCurrentCompanyObject()->getCity(),
 | 
						|
				'country'     => $this->getCurrentCompanyObject()->getCountry(),
 | 
						|
				'province'    => $this->getCurrentCompanyObject()->getProvince(),
 | 
						|
				'work_phone'  => $this->getCurrentCompanyObject()->getWorkPhone(),
 | 
						|
 | 
						|
				'created_by_id' => $this->getCurrentUserObject()->getId(),
 | 
						|
		];
 | 
						|
 | 
						|
		return $this->returnHandler( $data );
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Get UserDefault data for one or more UserDefaultes.
 | 
						|
	 * @param array $data filter data
 | 
						|
	 * @param bool $disable_paging
 | 
						|
	 * @return array|bool
 | 
						|
	 */
 | 
						|
	function getUserDefault( $data = null, $disable_paging = false ) {
 | 
						|
		$data = $this->initializeFilterAndPager( $data, $disable_paging );
 | 
						|
 | 
						|
		if ( !$this->getPermissionObject()->Check( 'user_default', 'enabled' )
 | 
						|
				|| !( $this->getPermissionObject()->Check( 'user_default', 'view' ) || $this->getPermissionObject()->Check( 'user_default', 'view_own' ) || $this->getPermissionObject()->Check( 'user_default', 'view_child' ) ) ) {
 | 
						|
			$data['filter_columns'] = $this->handlePermissionFilterColumns( ( isset( $data['filter_columns'] ) ) ? $data['filter_columns'] : null, Misc::trimSortPrefix( $this->getOptions( 'list_columns' ) ) );
 | 
						|
			$data['filter_data']['permission_children_ids'] = null;
 | 
						|
		} else {
 | 
						|
			//Get Permission Hierarchy Children first, as this can be used for viewing, or editing.
 | 
						|
			$data['filter_data']['permission_children_ids'] = $this->getPermissionObject()->getPermissionChildren( 'user_default', 'view' );
 | 
						|
		}
 | 
						|
 | 
						|
		$uplf = TTnew( 'UserDefaultListFactory' ); /** @var UserDefaultListFactory $uplf */
 | 
						|
		$uplf->getAPISearchByCompanyIdAndArrayCriteria( $this->getCurrentCompanyObject()->getId(), $data['filter_data'], $data['filter_items_per_page'], $data['filter_page'], null, $data['filter_sort'] );
 | 
						|
		Debug::Text( 'Record Count: ' . $uplf->getRecordCount(), __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
		if ( $uplf->getRecordCount() > 0 ) {
 | 
						|
			$this->getProgressBarObject()->start( $this->getAPIMessageID(), $uplf->getRecordCount() );
 | 
						|
 | 
						|
			$this->setPagerObject( $uplf );
 | 
						|
 | 
						|
			$retarr = [];
 | 
						|
			foreach ( $uplf as $ut_obj ) {
 | 
						|
				$retarr[] = $ut_obj->getObjectAsArray( $data['filter_columns'], $data['filter_data']['permission_children_ids'] );
 | 
						|
 | 
						|
				$this->getProgressBarObject()->set( $this->getAPIMessageID(), $uplf->getCurrentRow() );
 | 
						|
			}
 | 
						|
 | 
						|
			$this->getProgressBarObject()->stop( $this->getAPIMessageID() );
 | 
						|
 | 
						|
			return $this->returnHandler( $retarr );
 | 
						|
		}
 | 
						|
 | 
						|
		return $this->returnHandler( true ); //No records returned.
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Validate UserDefault data for one or more UserDefaultes.
 | 
						|
	 * @param array $data UserDefault data
 | 
						|
	 * @return array
 | 
						|
	 */
 | 
						|
	function validateUserDefault( $data ) {
 | 
						|
		return $this->setUserDefault( $data, true );
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Set UserDefault data for one or more UserDefaultes.
 | 
						|
	 * @param array $data UserDefault data
 | 
						|
	 * @param bool $validate_only
 | 
						|
	 * @param bool $ignore_warning
 | 
						|
	 * @return array|bool
 | 
						|
	 */
 | 
						|
	function setUserDefault( $data, $validate_only = false, $ignore_warning = true ) {
 | 
						|
		$validate_only = (bool)$validate_only;
 | 
						|
		$ignore_warning = (bool)$ignore_warning;
 | 
						|
 | 
						|
		if ( !is_array( $data ) ) {
 | 
						|
			return $this->returnHandler( false );
 | 
						|
		}
 | 
						|
 | 
						|
		if ( !$this->getPermissionObject()->Check( 'user_default', 'enabled' )
 | 
						|
				|| !( $this->getPermissionObject()->Check( 'user_default', 'edit' ) || $this->getPermissionObject()->Check( 'user_default', 'add' ) ) ) {
 | 
						|
			return $this->getPermissionObject()->PermissionDenied();
 | 
						|
		}
 | 
						|
 | 
						|
		if ( $validate_only == true ) {
 | 
						|
			Debug::Text( 'Validating Only!', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
		}
 | 
						|
 | 
						|
		[ $data, $total_records ] = $this->convertToMultipleRecords( $data );
 | 
						|
		Debug::Text( 'Received data for: ' . $total_records . ' UserDefaults', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
		Debug::Arr( $data, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
 | 
						|
		$validator_stats = [ 'total_records' => $total_records, 'valid_records' => 0 ];
 | 
						|
		$validator = $save_result = []; $key = false;
 | 
						|
		if ( is_array( $data ) && $total_records > 0 ) {
 | 
						|
			$this->getProgressBarObject()->start( $this->getAPIMessageID(), $total_records );
 | 
						|
 | 
						|
			foreach ( $data as $key => $row ) {
 | 
						|
				$primary_validator = new Validator();
 | 
						|
				$lf = TTnew( 'UserDefaultListFactory' ); /** @var UserDefaultListFactory $lf */
 | 
						|
				$lf->StartTransaction();
 | 
						|
				if ( isset( $row['id'] ) && $row['id'] != '' ) {
 | 
						|
					//Modifying existing object.
 | 
						|
					//Get UserDefault object, so we can only modify just changed data for specific records if needed.
 | 
						|
					$lf->getByIdAndCompanyId( $row['id'], $this->getCurrentCompanyObject()->getId() );
 | 
						|
					if ( $lf->getRecordCount() == 1 ) {
 | 
						|
						//Object exists, check edit permissions
 | 
						|
						if (
 | 
						|
								$validate_only == true
 | 
						|
								||
 | 
						|
								(
 | 
						|
								$this->getPermissionObject()->Check( 'user_default', 'edit' )
 | 
						|
								) ) {
 | 
						|
 | 
						|
							Debug::Text( 'Row Exists, getting current data for ID: ' . $row['id'], __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
							$lf = $lf->getCurrent();
 | 
						|
							$row = array_merge( $lf->getObjectAsArray(), $row );
 | 
						|
						} else {
 | 
						|
							$primary_validator->isTrue( 'permission', false, TTi18n::gettext( 'Edit permission denied' ) );
 | 
						|
						}
 | 
						|
					} else {
 | 
						|
						//Object doesn't exist.
 | 
						|
						$primary_validator->isTrue( 'id', false, TTi18n::gettext( 'Edit permission denied, record does not exist' ) );
 | 
						|
					}
 | 
						|
				} else {
 | 
						|
					//Adding new object, check ADD permissions.
 | 
						|
					$primary_validator->isTrue( 'permission', $this->getPermissionObject()->Check( 'user_default', 'add' ), TTi18n::gettext( 'Add permission denied' ) );
 | 
						|
 | 
						|
					//Because this class has sub-classes that depend on it, when adding a new record we need to make sure the ID is set first,
 | 
						|
					//so the sub-classes can depend on it. We also need to call Save( TRUE, TRUE ) to force a lookup on isNew()
 | 
						|
					$row['id'] = $lf->getNextInsertId();
 | 
						|
				}
 | 
						|
				Debug::Arr( $row, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
 | 
						|
				$is_valid = $primary_validator->isValid();
 | 
						|
				if ( $is_valid == true ) { //Check to see if all permission checks passed before trying to save data.
 | 
						|
					Debug::Text( 'Setting object data...', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
 | 
						|
					//Force Company ID to current company.
 | 
						|
					$row['company_id'] = $this->getCurrentCompanyObject()->getId();
 | 
						|
 | 
						|
					//If the user doesn't have permissions to change the hierarchy_control, unset that data.
 | 
						|
					if ( isset( $row['hierarchy_control'] ) && ( $this->getPermissionObject()->Check( 'hierarchy', 'edit' ) || $this->getPermissionObject()->Check( 'user', 'edit_hierarchy' ) ) ) {
 | 
						|
						Debug::Text( 'Allowing change of hierarchy...', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
					} else {
 | 
						|
						Debug::Text( 'NOT allowing change of hierarchy...', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
						unset( $row['hierarchy_control'] );
 | 
						|
					}
 | 
						|
 | 
						|
					$lf->setObjectFromArray( $row );
 | 
						|
 | 
						|
					$is_valid = $lf->isValid( $ignore_warning );
 | 
						|
					if ( $is_valid == true ) {
 | 
						|
						Debug::Text( 'Saving data...', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
						if ( $validate_only == true ) {
 | 
						|
							$save_result[$key] = true;
 | 
						|
						} else {
 | 
						|
							$save_result[$key] = $lf->Save( true, true );
 | 
						|
						}
 | 
						|
						$validator_stats['valid_records']++;
 | 
						|
					}
 | 
						|
				}
 | 
						|
 | 
						|
				if ( $is_valid == false ) {
 | 
						|
					Debug::Text( 'Data is Invalid...', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
 | 
						|
					$lf->FailTransaction(); //Just rollback this single record, continue on to the rest.
 | 
						|
 | 
						|
					$validator[$key] = $this->setValidationArray( [ $primary_validator, $lf ] );
 | 
						|
				} else if ( $validate_only == true ) {
 | 
						|
					$lf->FailTransaction();
 | 
						|
				}
 | 
						|
 | 
						|
 | 
						|
				$lf->CommitTransaction();
 | 
						|
 | 
						|
				$this->getProgressBarObject()->set( $this->getAPIMessageID(), $key );
 | 
						|
			}
 | 
						|
 | 
						|
			$this->getProgressBarObject()->stop( $this->getAPIMessageID() );
 | 
						|
 | 
						|
			return $this->handleRecordValidationResults( $validator, $validator_stats, $key, $save_result );
 | 
						|
		}
 | 
						|
 | 
						|
		return $this->returnHandler( false );
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Delete one or more UserDefaults.
 | 
						|
	 * @param array $data UserDefault data
 | 
						|
	 * @return array|bool
 | 
						|
	 */
 | 
						|
	function deleteUserDefault( $data ) {
 | 
						|
		if ( !is_array( $data ) ) {
 | 
						|
			$data = [ $data ];
 | 
						|
		}
 | 
						|
 | 
						|
		if ( !is_array( $data ) ) {
 | 
						|
			return $this->returnHandler( false );
 | 
						|
		}
 | 
						|
 | 
						|
		if ( !$this->getPermissionObject()->Check( 'user_default', 'enabled' )
 | 
						|
				|| !( $this->getPermissionObject()->Check( 'user_default', 'delete' ) ) ) {
 | 
						|
			return $this->getPermissionObject()->PermissionDenied();
 | 
						|
		}
 | 
						|
 | 
						|
		Debug::Text( 'Received data for: ' . count( $data ) . ' UserDefaults', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
		Debug::Arr( $data, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
 | 
						|
		$total_records = count( $data );
 | 
						|
		$validator = $save_result = []; $key = false;
 | 
						|
		$validator_stats = [ 'total_records' => $total_records, 'valid_records' => 0 ];
 | 
						|
		if ( is_array( $data ) && $total_records > 0 ) {
 | 
						|
			$this->getProgressBarObject()->start( $this->getAPIMessageID(), $total_records );
 | 
						|
 | 
						|
			foreach ( $data as $key => $id ) {
 | 
						|
				$primary_validator = new Validator();
 | 
						|
				$lf = TTnew( 'UserDefaultListFactory' ); /** @var UserDefaultListFactory $lf */
 | 
						|
				$lf->StartTransaction();
 | 
						|
				if ( $id != '' ) {
 | 
						|
					//Modifying existing object.
 | 
						|
					//Get UserDefault object, so we can only modify just changed data for specific records if needed.
 | 
						|
					$lf->getByIdAndCompanyId( $id, $this->getCurrentCompanyObject()->getId() );
 | 
						|
					if ( $lf->getRecordCount() == 1 ) {
 | 
						|
						//Object exists, check edit permissions
 | 
						|
						if ( $this->getPermissionObject()->Check( 'user_default', 'delete' ) ) {
 | 
						|
							Debug::Text( 'Record Exists, deleting record ID: ' . $id, __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
							$lf = $lf->getCurrent();
 | 
						|
						} else {
 | 
						|
							$primary_validator->isTrue( 'permission', false, TTi18n::gettext( 'Delete permission denied' ) );
 | 
						|
						}
 | 
						|
					} else {
 | 
						|
						//Object doesn't exist.
 | 
						|
						$primary_validator->isTrue( 'id', false, TTi18n::gettext( 'Delete permission denied, record does not exist' ) );
 | 
						|
					}
 | 
						|
				} else {
 | 
						|
					$primary_validator->isTrue( 'id', false, TTi18n::gettext( 'Delete permission denied, record does not exist' ) );
 | 
						|
				}
 | 
						|
 | 
						|
				//Debug::Arr($lf, 'AData: ', __FILE__, __LINE__, __METHOD__, 10);
 | 
						|
 | 
						|
				$is_valid = $primary_validator->isValid();
 | 
						|
				if ( $is_valid == true ) { //Check to see if all permission checks passed before trying to save data.
 | 
						|
					Debug::Text( 'Attempting to delete record...', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
					$lf->setDeleted( true );
 | 
						|
 | 
						|
					$is_valid = $lf->isValid();
 | 
						|
					if ( $is_valid == true ) {
 | 
						|
						Debug::Text( 'Record Deleted...', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
						$save_result[$key] = $lf->Save();
 | 
						|
						$validator_stats['valid_records']++;
 | 
						|
					}
 | 
						|
				}
 | 
						|
 | 
						|
				if ( $is_valid == false ) {
 | 
						|
					Debug::Text( 'Data is Invalid...', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
 | 
						|
					$lf->FailTransaction(); //Just rollback this single record, continue on to the rest.
 | 
						|
 | 
						|
					$validator[$key] = $this->setValidationArray( [ $primary_validator, $lf ] );
 | 
						|
				}
 | 
						|
 | 
						|
				$lf->CommitTransaction();
 | 
						|
 | 
						|
				$this->getProgressBarObject()->set( $this->getAPIMessageID(), $key );
 | 
						|
			}
 | 
						|
 | 
						|
			$this->getProgressBarObject()->stop( $this->getAPIMessageID() );
 | 
						|
 | 
						|
			return $this->handleRecordValidationResults( $validator, $validator_stats, $key, $save_result );
 | 
						|
		}
 | 
						|
 | 
						|
		return $this->returnHandler( false );
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Copy one or more UserDefaultes.
 | 
						|
	 * @param array $data UserDefault IDs
 | 
						|
	 * @return array
 | 
						|
	 */
 | 
						|
	function copyUserDefault( $data ) {
 | 
						|
		if ( !is_array( $data ) ) {
 | 
						|
			$data = [ $data ];
 | 
						|
		}
 | 
						|
 | 
						|
		if ( !is_array( $data ) ) {
 | 
						|
			return $this->returnHandler( false );
 | 
						|
		}
 | 
						|
 | 
						|
		Debug::Text( 'Received data for: ' . count( $data ) . ' UserDefaults', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
		Debug::Arr( $data, 'Data: ', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
 | 
						|
		$src_rows = $this->stripReturnHandler( $this->getUserDefault( [ 'filter_data' => [ 'id' => $data ] ], true ) );
 | 
						|
		if ( is_array( $src_rows ) && count( $src_rows ) > 0 ) {
 | 
						|
			Debug::Arr( $src_rows, 'SRC Rows: ', __FILE__, __LINE__, __METHOD__, 10 );
 | 
						|
			foreach ( $src_rows as $key => $row ) {
 | 
						|
				unset( $src_rows[$key]['id'], $src_rows[$key]['manual_id'] );     //Clear fields that can't be copied
 | 
						|
				$src_rows[$key]['name'] = Misc::generateCopyName( $row['name'] ); //Generate unique name
 | 
						|
			}
 | 
						|
 | 
						|
			//Debug::Arr($src_rows, 'bSRC Rows: ', __FILE__, __LINE__, __METHOD__, 10);
 | 
						|
 | 
						|
			return $this->setUserDefault( $src_rows ); //Save copied rows
 | 
						|
		}
 | 
						|
 | 
						|
		return $this->returnHandler( false );
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
?>
 |