Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View anhtuank7c's full-sized avatar
🎯
Focusing

Tuan Nguyen anhtuank7c

🎯
Focusing
View GitHub Profile
composer require crabstudio/recaptcha
<?php
namespace App\Controller;
use App\Event\CheckProfileListener;
use Cake\Event\Event;
/**
* CheckProfile trait
*/
trait CheckProfile {
<?php
namespace App\Event;
use Cake\Event\Event;
use Cake\Event\EventListenerInterface;
class PostActiveListener implements EventListenerInterface
{
<?php
namespace App\Controller\Admin;
use App\Controller\AppController;
use App\Controller\CheckProfile;
/**
* Dashboard Controller
*
<?php
namespace App\Shell\Task;
use Cake\Console\Shell;
use Cake\Core\Configure;
use Cake\ORM\TableRegistry;
/**
* DeleteExpiredInactiveAccountTask
//Lưu ý: Việc cái nào nhúng vào cái nào chỉ là cách mình nói về 2 kiểu viết này
//1. nhúng php vào html
<?php foreach($products as $product):?>
<div class="product">
<h3 class="title"><?= $product->title?></h3>
<div class="content">
<p><?= $product->content?></p>
</div>
</div>
@anhtuank7c
anhtuank7c / index.html
Created February 12, 2016 01:09
Demo jquery support Izwebz group facebook
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
</head>
<body>
@anhtuank7c
anhtuank7c / app.php
Last active November 19, 2019 17:33
CakePHP RedisEngine configure
<?php
return [
/**
* Debug Level:
*
* Production Mode:
* false: No error messages, errors, or warnings shown.
*
* Development Mode:
* true: Errors and warnings shown.
tinymce.init({
forced_root_block: false,
relative_urls: false,
mode: "exact",
elements: "content",
theme: "modern",
height: 300,
plugins: ["advlist autolink link image lists charmap preview hr anchor pagebreak", "searchreplace wordcount visualblocks visualchars insertdatetime media nonbreaking", "table contextmenu directionality emoticons paste textcolor responsivefilemanager fullscreen"],
toolbar1: "undo redo | bold italic underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | styleselect",
toolbar2: "| responsivefilemanager | link unlink anchor | image media | forecolor backcolor | fullscreen preview code ",
<?php
namespace App\View\Widget;
use Cake\Core\Configure;
use Cake\I18n\I18n;
use Cake\View\Form\ContextInterface;
use Cake\View\Widget\BasicWidget;
/**
* Input widget class for generating a textarea control.