# betterdocs/4.9.2/includes/Editors/Editor.php

BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ &amp; Chatbot, version 4.9.2. 125 lines.

- Page: https://pluginprobe.com/plugins/betterdocs/4.9.2/code/includes/Editors/Editor.php
- Raw: https://pluginprobe.com/plugins/betterdocs/4.9.2/raw/includes/Editors/Editor.php
- Modified: 2024-12-09T12:10:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/betterdocs/4.9.2/code/includes/Editors/Editor.php#L10-L20`.

```php
<?php

namespace WPDeveloper\BetterDocs\Editors;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

use Exception;
use WPDeveloper\BetterDocs\Utils\Base;
use WPDeveloper\BetterDocs\Utils\Enqueue;
use WPDeveloper\BetterDocs\Dependencies\DI\Container;

class Editor extends Base {
	/**
	 * Container
	 * @var Container
	 */
	private $container;

	/**
	 * List of editors we support. i.e: Elementor, Block Editor (WordPress Default)
	 * @var array
	 */
	private $editors = [];

	/**
	 * Assets Manager
	 * @var Enqueue
	 */
	private $assets = [];

	public function __construct( Container $container, $editors = [] ) {
		$this->container = $container;
		$this->editors   = $editors;
		$this->assets    = $this->container->get( Enqueue::class );

		// add_action( 'admin_enqueue_scripts', [$this, 'admin_enqueue'] );
		// add_action( 'wp_enqueue_scripts', [$this, 'public_enqueue'] );

		//Add placeholder image for elementor theme builder (All Parts) Tab
		add_filter( 'elementor-pro/site-editor/data/template', [ $this, 'replace_all_parts_betterdocs_urls' ], 10, 1 );
	}

	public function admin_enqueue( $hook ) {
		$this->register_vendor_assets();
	}

	public function public_enqueue() {
		$this->register_vendor_assets();
	}

	public function register_vendor_assets() {
		$this->assets->register( 'betterdocs-fontawesome', 'vendor/css/font-awesome5.css' );
	}

	public function init() {
		if ( empty( $this->editors ) ) {
			return;
		}

		foreach ( $this->editors as $editor ) {
			$this->container->get( $editor )->init();
		}
	}

	public function admin_init() {
		if ( empty( $this->editors ) ) {
			return;
		}

		foreach ( $this->editors as $editor ) {
			$_editor = $this->container->get( $editor );
			if ( method_exists( $_editor, 'admin_init' ) ) {
				$_editor->admin_init();
			}
		}
	}

	public function get( $editor_id = 'elementor' ) {
		if ( empty( $this->editors[ $editor_id ] ) ) {
			// Translators: %s is the editor ID that does not exist.
			throw new Exception( esc_textarea( sprintf( __( 'Editor: %s does not exist.', 'betterdocs' ), $editor_id ) ) ); //to escape anything into strings
		}

		return ( $this->container->get( $this->editors[ $editor_id ] ) );
	}


	public function get_post_count( $term_count, $term_id, $nested_subcategory = false ) {
		if ( $nested_subcategory == false ) {
			return $term_count;
		}

		$taxonomy = 'doc_category';
		$args     = [
			'taxonomy' => $taxonomy,
			'child_of' => $term_id,
		];

		$tax_terms = get_terms( $args );

		if ( $tax_terms ) {
			$term_count = array_reduce(
				$tax_terms,
				function ( $carry, $term ) {
					return $carry + $term->count;
				},
				$term_count
			);
		}

		return $term_count;
	}

	public function replace_all_parts_betterdocs_urls( $data ) {
		if ( isset( $data['type'] ) && $data['type'] == 'docs' ) {
			$data['placeholderUrl'] = 'https://demo.betterdocs.co/wp-content/uploads/2024/09/Single-doc.svg';
		} elseif ( isset( $data['type'] ) && $data['type'] == 'doc-archive' ) {
			$data['placeholderUrl'] = 'https://demo.betterdocs.co/wp-content/uploads/2024/09/Docs-Archive.svg';
		}
		return $data;
	}
}

```
