SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > jetpack > extensions > blocks > recipe


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins/jetpack/extensions/blocks/recipe

NameTypeSizeLast ModifiedActions
class-jetpack-recipe-block.php File 2224 bytes September 20 2023 01:19:10.
recipe.php File 1409 bytes October 24 2023 18:28:46.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins/jetpack/extensions/blocks/recipe/recipe.php

<?php
/**
 * Recipe Block.
 *
 * @since 11.1
 *
 * @package automattic/jetpack
 */

use Automattic\Jetpack\Blocks;

add_action(
	'init',
	function () {
		Blocks::jetpack_register_block(
			__DIR__,
			array(
				'render_callback' => array( 'Automattic\\Jetpack\\Extensions\\Recipe\\Jetpack_Recipe_Block', 'render' ),
			)
		);

		Blocks::jetpack_register_block(
			'jetpack/recipe-details',
			array(
				'parent' => array( 'jetpack/recipe' ),
			)
		);

		Blocks::jetpack_register_block(
			'jetpack/recipe-hero',
			array(
				'parent'          => array( 'jetpack/recipe' ),
				'render_callback' => array( 'Automattic\\Jetpack\\Extensions\\Recipe\\Jetpack_Recipe_Block', 'render_hero' ),
			)
		);

		Blocks::jetpack_register_block(
			'jetpack/recipe-ingredients-list',
			array(
				'parent' => array( 'jetpack/recipe' ),
			)
		);

		Blocks::jetpack_register_block(
			'jetpack/recipe-ingredient-item',
			array(
				'parent' => array( 'jetpack/recipe' ),
			)
		);

		Blocks::jetpack_register_block(
			'jetpack/recipe-steps',
			array(
				'parent' => array( 'jetpack/recipe' ),
			)
		);

		Blocks::jetpack_register_block(
			'jetpack/recipe-step',
			array(
				'parent'          => array( 'jetpack/recipe' ),
				'render_callback' => array( 'Automattic\\Jetpack\\Extensions\\Recipe\\Jetpack_Recipe_Block', 'render_step' ),
			)
		);
	}
);

require_once __DIR__ . '/class-jetpack-recipe-block.php';

SILENT KILLER Tool