This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$options = array( | |
"user_email" => $userEmail, | |
"path" => $visitedPath, | |
"action_name" => $actionName, | |
"store_id" => $webStore, | |
"remote_ip" => $remoteIp, | |
"created_at" => $date | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); | |
$loggerModel = $objectManager->create('Vodex\Logger\Model\Logger'); | |
$loggerModel->setData($options); | |
$loggerModel->save(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$options = array( | |
"user_email" => $userEmail, | |
"path" => $visitedPath, | |
"action_name" => $actionName, | |
"store_id" => $webStore, | |
"remote_ip" => $remoteIp, | |
"created_at" => $date | |
); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Vodex\Logger\Observer; | |
/** | |
* @category Logger | |
* @package Vodex_Logger | |
* @author [email protected] | |
* @website https://vodex.co.id | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"title":"Live TV ABC", | |
"drawable":"", | |
"submenu":"", | |
"iap":false, | |
"tabs":[ | |
{ | |
"title":"Live TV ABC", | |
"provider":"stream", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Google Maps JavaScript API v3 Example: Map Simple</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | |
<meta charset="utf-8"> | |
<style> | |
html, body, #map_canvas { | |
margin: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Jackrose\Catalog\Block\Product; | |
class TrendingProduct extends \Magento\Framework\View\Element\Template | |
{ | |
... | |
protected $_request; | |
... | |
public function __construct( | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pull base Image | |
FROM ubuntu:16.04 | |
# Change default shell to bash | |
SHELL ["/bin/bash","-c"] | |
# Prepare and Install the required package | |
RUN apt-get update && apt-get install -y curl git unzip php apache2 libapache2-mod-php php-{mysql,json,mbstring,curl,mcrypt,gd,bcmath,intl,soap,xml,xdebug,zip} locales \ | |
&& rm -rf /var/lib/apt/lists/* \ | |
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -dit -p 80:80 --mount type=bind,source="$(pwd)/src",target="/var/www/domain.com/public_html" IMAGE_NAME:latest |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer