[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.219.53.18: ~ $
<?php
/**
 * Base model class.
 *
 * @since 4.6.0
 *
 * @package LearnDash\Core
 */

namespace LearnDash\Core\Models;

use StellarWP\Learndash\StellarWP\Models\Contracts\Model as ModelInterface;
use StellarWP\Learndash\StellarWP\Models\Model as StellarModel;

/**
 * Base model class.
 *
 * @since 4.6.0
 */
abstract class Model extends StellarModel {
	/**
	 * Returns true if an attribute exists. Otherwise, false.
	 *
	 * @since 4.6.0
	 *
	 * @param string $key Attribute name.
	 *
	 * @return bool
	 */
	public function hasAttribute( string $key ): bool {
		return array_key_exists( $key, $this->attributes );
	}

	/**
	 * Get an attribute from the model.
	 * It was overridden to disable properties validation for now as they are dynamic. Properties must be added later and this method must be removed.
	 *
	 * @since 4.6.0
	 *
	 * @param string $key     Attribute name.
	 * @param mixed  $default Default value. Default null.
	 *
	 * @return mixed
	 */
	public function getAttribute( string $key, $default = null ) {
		return $this->attributes[ $key ] ?? $default;
	}

	/**
	 * Sets an attribute on the model.
	 * It was overridden to disable properties validation for now as they are dynamic. Properties must be added later and this method must be removed.
	 *
	 * @since 4.6.0
	 *
	 * @param string $key   Attribute name.
	 * @param mixed  $value Attribute value.
	 *
	 * @return ModelInterface
	 */
	public function setAttribute( string $key, $value ): ModelInterface {
		$this->attributes[ $key ] = $value;

		return $this;
	}
}

Filemanager

Name Type Size Permission Actions
Interfaces Folder 0755
Traits Folder 0755
Course.php File 9.81 KB 0644
Exam.php File 1.42 KB 0644
Group.php File 5.18 KB 0644
Instructor.php File 631 B 0644
Lesson.php File 7.79 KB 0644
Model.php File 1.5 KB 0644
Post.php File 9.89 KB 0644
Product.php File 28.77 KB 0644
Quiz.php File 4.63 KB 0644
Topic.php File 5.02 KB 0644
Transaction.php File 21.85 KB 0644
User.php File 1.67 KB 0644
Virtual_Instructor.php File 9.89 KB 0644