# hostinger/2.2.3/includes/Admin/Actions.php

Hostinger Tools, version 2.2.3. 27 lines.

- Page: https://pluginprobe.com/plugins/hostinger/2.2.3/code/includes/Admin/Actions.php
- Raw: https://pluginprobe.com/plugins/hostinger/2.2.3/raw/includes/Admin/Actions.php
- Modified: 2024-04-15T13:46: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/hostinger/2.2.3/code/includes/Admin/Actions.php#L10-L20`.

```php
<?php

namespace Hostinger\Admin;

defined( 'ABSPATH' ) || exit;

class Actions {
	public const LOGO_UPLOAD         = 'logo_upload';
	public const IMAGE_UPLOAD        = 'image_upload';
	public const EDIT_DESCRIPTION    = 'edit_description';
	public const EDIT_SITE_TITLE     = 'edit_site_title';
	public const ADD_POST            = 'add_post';
	public const ADD_PAGE            = 'add_page';
	public const ADD_PRODUCT         = 'add_product';
	public const DOMAIN_IS_CONNECTED = 'connect_domain';
	public const ACTIONS_LIST        = array(
		self::LOGO_UPLOAD,
		self::IMAGE_UPLOAD,
		self::EDIT_DESCRIPTION,
		self::EDIT_SITE_TITLE,
		self::ADD_POST,
		self::ADD_PAGE,
		self::ADD_PRODUCT,
		self::DOMAIN_IS_CONNECTED,
	);
}

```
