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 namespace Wallabag\Import; class FirefoxImport extends BrowserImport { protect..
Decoded Output download
<?php
namespace Wallabag\Import;
class FirefoxImport extends BrowserImport
{
protected $filepath;
public function getName()
{
return 'Firefox';
}
public function getUrl()
{
return 'import_firefox';
}
public function getDescription()
{
return 'import.firefox.description';
}
public function validateEntry(array $importedEntry)
{
if (empty($importedEntry['uri'])) {
return false;
}
return true;
}
protected function prepareEntry(array $entry = [])
{
$data = [
'title' => $entry['title'],
'html' => false,
'url' => $entry['uri'],
'is_archived' => (int) $this->markAsRead,
'is_starred' => false,
'tags' => '',
'created_at' => substr($entry['dateAdded'], 0, 10),
];
if (rray_key_exists('tags', $entry) && '' !== $entry['tags']) {
$data['tags'] = $entry['tags'];
}
return $data;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Wallabag\Import;
class FirefoxImport extends BrowserImport
{
protected $filepath;
public function getName()
{
return 'Firefox';
}
public function getUrl()
{
return 'import_firefox';
}
public function getDescription()
{
return 'import.firefox.description';
}
public function validateEntry(array $importedEntry)
{
if (empty($importedEntry['uri'])) {
return false;
}
return true;
}
protected function prepareEntry(array $entry = [])
{
$data = [
'title' => $entry['title'],
'html' => false,
'url' => $entry['uri'],
'is_archived' => (int) $this->markAsRead,
'is_starred' => false,
'tags' => '',
'created_at' => substr($entry['dateAdded'], 0, 10),
];
if (\array_key_exists('tags', $entry) && '' !== $entry['tags']) {
$data['tags'] = $entry['tags'];
}
return $data;
}
}
Function Calls
None |
Stats
MD5 | e32276b66325f404ccd8857a526322d8 |
Eval Count | 0 |
Decode Time | 86 ms |