handle = $handle; $this->url = $url; } /** * Handle enqueueing the asset this class represents (e.g., using wp_enqueue_script() or wp_enqueue_style()) * * @return void */ abstract public function enqueue_asset(); /** * Handle printing the asset this class represents (e.g., using wp_print_scripts() or wp_print_styles()) * * @return void */ abstract public function print_asset(); }