Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Activity text strings. * Is used for all the text within activity logs & not..
Decoded Output download
<?php
/**
* Activity text strings.
* Is used for all the text within activity logs & notifications.
*/
return [
// Pages
'page_create' => ' ',
'page_create_notification' => ' ',
'page_update' => ' ',
'page_update_notification' => ' ',
'page_delete' => ' ',
'page_delete_notification' => ' ',
'page_restore' => ' ',
'page_restore_notification' => ' ',
'page_move' => ' ',
'page_move_notification' => ' ',
// Chapters
'chapter_create' => ' ',
'chapter_create_notification' => ' ',
'chapter_update' => ' ',
'chapter_update_notification' => ' ',
'chapter_delete' => ' ',
'chapter_delete_notification' => ' ',
'chapter_move' => ' ',
'chapter_move_notification' => ' ',
// Books
'book_create' => ' ',
'book_create_notification' => ' ',
'book_create_from_chapter' => ' ',
'book_create_from_chapter_notification' => ' ',
'book_update' => ' ',
'book_update_notification' => ' ',
'book_delete' => ' ',
'book_delete_notification' => ' ',
'book_sort' => ' ',
'book_sort_notification' => ' ',
// Bookshelves
'bookshelf_create' => ' ',
'bookshelf_create_notification' => ' ',
'bookshelf_create_from_book' => ' ',
'bookshelf_create_from_book_notification' => ' ',
'bookshelf_update' => ' ',
'bookshelf_update_notification' => ' ',
'bookshelf_delete' => ' ',
'bookshelf_delete_notification' => ' ',
// Revisions
'revision_restore' => ' ',
'revision_delete' => ' ',
'revision_delete_notification' => ' ',
// Favourites
'favourite_add_notification' => '":name" ',
'favourite_remove_notification' => '":name" ',
// Watching
'watch_update_level_notification' => 'Watch preferences successfully updated',
// Auth
'auth_login' => '',
'auth_register' => ' ',
'auth_password_reset_request' => ' ',
'auth_password_reset_update' => ' ',
'mfa_setup_method' => ' MFA',
'mfa_setup_method_notification' => ' ',
'mfa_remove_method' => ' MFA',
'mfa_remove_method_notification' => ' ',
// Settings
'settings_update' => ' ',
'settings_update_notification' => ' ',
'maintenance_action_run' => ' ',
// Webhooks
'webhook_create' => ' webhook ',
'webhook_create_notification' => ' Webhook ',
'webhook_update' => ' webhook',
'webhook_update_notification' => ' Webhook ',
'webhook_delete' => ' webhook',
'webhook_delete_notification' => ' Webhook ',
// Users
'user_create' => ' ',
'user_create_notification' => ' ',
'user_update' => ' ',
'user_update_notification' => ' ',
'user_delete' => ' ',
'user_delete_notification' => ' ',
// API Tokens
'api_token_create' => 'created API token',
'api_token_create_notification' => 'O API ',
'api_token_update' => 'updated API token',
'api_token_update_notification' => ' API ',
'api_token_delete' => 'deleted API token',
'api_token_delete_notification' => ' API ',
// Roles
'role_create' => ' ',
'role_create_notification' => ' ',
'role_update' => ' ',
'role_update_notification' => ' ',
'role_delete' => 'deleted role',
'role_delete_notification' => ' ',
// Recycle Bin
'recycle_bin_empty' => 'emptied recycle bin',
'recycle_bin_restore' => 'restored from recycle bin',
'recycle_bin_destroy' => 'removed from recycle bin',
// Comments
'commented_on' => '',
'comment_create' => 'added comment',
'comment_update' => 'updated comment',
'comment_delete' => 'deleted comment',
// Other
'permissions_update' => ' ',
];
?>
Did this file decode correctly?
Original Code
<?php
/**
* Activity text strings.
* Is used for all the text within activity logs & notifications.
*/
return [
// Pages
'page_create' => ' ',
'page_create_notification' => ' ',
'page_update' => ' ',
'page_update_notification' => ' ',
'page_delete' => ' ',
'page_delete_notification' => ' ',
'page_restore' => ' ',
'page_restore_notification' => ' ',
'page_move' => ' ',
'page_move_notification' => ' ',
// Chapters
'chapter_create' => ' ',
'chapter_create_notification' => ' ',
'chapter_update' => ' ',
'chapter_update_notification' => ' ',
'chapter_delete' => ' ',
'chapter_delete_notification' => ' ',
'chapter_move' => ' ',
'chapter_move_notification' => ' ',
// Books
'book_create' => ' ',
'book_create_notification' => ' ',
'book_create_from_chapter' => ' ',
'book_create_from_chapter_notification' => ' ',
'book_update' => ' ',
'book_update_notification' => ' ',
'book_delete' => ' ',
'book_delete_notification' => ' ',
'book_sort' => ' ',
'book_sort_notification' => ' ',
// Bookshelves
'bookshelf_create' => ' ',
'bookshelf_create_notification' => ' ',
'bookshelf_create_from_book' => ' ',
'bookshelf_create_from_book_notification' => ' ',
'bookshelf_update' => ' ',
'bookshelf_update_notification' => ' ',
'bookshelf_delete' => ' ',
'bookshelf_delete_notification' => ' ',
// Revisions
'revision_restore' => ' ',
'revision_delete' => ' ',
'revision_delete_notification' => ' ',
// Favourites
'favourite_add_notification' => '":name" ',
'favourite_remove_notification' => '":name" ',
// Watching
'watch_update_level_notification' => 'Watch preferences successfully updated',
// Auth
'auth_login' => '',
'auth_register' => ' ',
'auth_password_reset_request' => ' ',
'auth_password_reset_update' => ' ',
'mfa_setup_method' => ' MFA',
'mfa_setup_method_notification' => ' ',
'mfa_remove_method' => ' MFA',
'mfa_remove_method_notification' => ' ',
// Settings
'settings_update' => ' ',
'settings_update_notification' => ' ',
'maintenance_action_run' => ' ',
// Webhooks
'webhook_create' => ' webhook ',
'webhook_create_notification' => ' Webhook ',
'webhook_update' => ' webhook',
'webhook_update_notification' => ' Webhook ',
'webhook_delete' => ' webhook',
'webhook_delete_notification' => ' Webhook ',
// Users
'user_create' => ' ',
'user_create_notification' => ' ',
'user_update' => ' ',
'user_update_notification' => ' ',
'user_delete' => ' ',
'user_delete_notification' => ' ',
// API Tokens
'api_token_create' => 'created API token',
'api_token_create_notification' => 'O API ',
'api_token_update' => 'updated API token',
'api_token_update_notification' => ' API ',
'api_token_delete' => 'deleted API token',
'api_token_delete_notification' => ' API ',
// Roles
'role_create' => ' ',
'role_create_notification' => ' ',
'role_update' => ' ',
'role_update_notification' => ' ',
'role_delete' => 'deleted role',
'role_delete_notification' => ' ',
// Recycle Bin
'recycle_bin_empty' => 'emptied recycle bin',
'recycle_bin_restore' => 'restored from recycle bin',
'recycle_bin_destroy' => 'removed from recycle bin',
// Comments
'commented_on' => '',
'comment_create' => 'added comment',
'comment_update' => 'updated comment',
'comment_delete' => 'deleted comment',
// Other
'permissions_update' => ' ',
];
Function Calls
None |
Stats
MD5 | 9252c6872b71ead42eb4da4b197baa15 |
Eval Count | 0 |
Decode Time | 109 ms |