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 /** * Copyright Magefan ([email protected]). All rights reserved. * Please visi..
Decoded Output download
<?php
/**
* Copyright Magefan ([email protected]). All rights reserved.
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
*
* Glory to Ukraine! Glory to the heroes!
*/
declare(strict_types=1);
namespace Magefan\HtmlSitemap\Model;
use Magento\Framework\ObjectManagerInterface;
/**
* Class Allow to create and receive Magefan Blog object
* Use ObjectManager as Magefan Blog cannot be installed together with this extension,
* so cannot use object factories in the constructor.
*/
class BlogFactory
{
/**
* @var ObjectManagerInterface
*/
private $objectManager;
/**
* BlogFactory constructor.
* @param ObjectManagerInterface $objectManager
*/
public function __construct(
ObjectManagerInterface $objectManager
) {
$this->objectManager = $objectManager;
}
/**
* @return mixed
*/
public function createPost()
{
return $this->objectManager->create(
\Magefan\Blog\Model\Post::class
);
}
/**
* @return mixed
*/
public function createPostCollection()
{
return $this->objectManager->create(
\Magefan\Blog\Model\ResourceModel\Post\Collection::class
);
}
/**
* @return mixed
*/
public function createCategory()
{
return $this->objectManager->create(
\Magefan\Blog\Model\Category::class
);
}
/**
* @return mixed
*/
public function createCategoryCollection()
{
return $this->objectManager->create(
\Magefan\Blog\Model\ResourceModel\Category\Collection::class
);
}
/**
* @return mixed
*/
public function getUrl()
{
return $this->objectManager->get(
\Magefan\Blog\Model\Url::class
);
}
/**
* @return mixed
*/
public function getUrlResolver()
{
return $this->objectManager->get(
\Magefan\Blog\Api\UrlResolverInterface::class
);
}
/**
* @return mixed
*/
public function createAuthor()
{
return $this->objectManager->create(
\Magefan\Blog\Api\AuthorInterface::class
);
}
/**
* @return mixed
*/
public function createAuthorCollection()
{
return $this->objectManager->create(
\Magefan\Blog\Api\AuthorCollectionInterface::class
);
}
/**
* @return mixed
*/
public function createTag()
{
return $this->objectManager->create(
\Magefan\Blog\Model\Tag::class
);
}
/**
* @return mixed
*/
public function createTagCollection()
{
return $this->objectManager->create(
\Magefan\Blog\Model\ResourceModel\Tag\Collection::class
);
}
/**
* @return mixed
*/
public function getConfig()
{
return $this->objectManager->get(
\Magefan\Blog\Model\Config::class
);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magefan ([email protected]). All rights reserved.
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
*
* Glory to Ukraine! Glory to the heroes!
*/
declare(strict_types=1);
namespace Magefan\HtmlSitemap\Model;
use Magento\Framework\ObjectManagerInterface;
/**
* Class Allow to create and receive Magefan Blog object
* Use ObjectManager as Magefan Blog cannot be installed together with this extension,
* so cannot use object factories in the constructor.
*/
class BlogFactory
{
/**
* @var ObjectManagerInterface
*/
private $objectManager;
/**
* BlogFactory constructor.
* @param ObjectManagerInterface $objectManager
*/
public function __construct(
ObjectManagerInterface $objectManager
) {
$this->objectManager = $objectManager;
}
/**
* @return mixed
*/
public function createPost()
{
return $this->objectManager->create(
\Magefan\Blog\Model\Post::class
);
}
/**
* @return mixed
*/
public function createPostCollection()
{
return $this->objectManager->create(
\Magefan\Blog\Model\ResourceModel\Post\Collection::class
);
}
/**
* @return mixed
*/
public function createCategory()
{
return $this->objectManager->create(
\Magefan\Blog\Model\Category::class
);
}
/**
* @return mixed
*/
public function createCategoryCollection()
{
return $this->objectManager->create(
\Magefan\Blog\Model\ResourceModel\Category\Collection::class
);
}
/**
* @return mixed
*/
public function getUrl()
{
return $this->objectManager->get(
\Magefan\Blog\Model\Url::class
);
}
/**
* @return mixed
*/
public function getUrlResolver()
{
return $this->objectManager->get(
\Magefan\Blog\Api\UrlResolverInterface::class
);
}
/**
* @return mixed
*/
public function createAuthor()
{
return $this->objectManager->create(
\Magefan\Blog\Api\AuthorInterface::class
);
}
/**
* @return mixed
*/
public function createAuthorCollection()
{
return $this->objectManager->create(
\Magefan\Blog\Api\AuthorCollectionInterface::class
);
}
/**
* @return mixed
*/
public function createTag()
{
return $this->objectManager->create(
\Magefan\Blog\Model\Tag::class
);
}
/**
* @return mixed
*/
public function createTagCollection()
{
return $this->objectManager->create(
\Magefan\Blog\Model\ResourceModel\Tag\Collection::class
);
}
/**
* @return mixed
*/
public function getConfig()
{
return $this->objectManager->get(
\Magefan\Blog\Model\Config::class
);
}
}
Function Calls
| None |
Stats
| MD5 | ad9ff91dffd9965a1f72c21ad84da164 |
| Eval Count | 0 |
| Decode Time | 112 ms |