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 datacode\app\services\formie; | |
use ReflectionClass; | |
class Helper | |
{ | |
public static function getFormField($formieField) | |
{ |
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
import { createApp } from 'vue' | |
import router from '~/js/bootstrap/router' | |
const app = createApp({}) | |
app.component('app', require('~/vue/app/index.vue').default) | |
app.component('breadcrumbs', require('~/vue/app/_/breadcrumbs.vue').default) | |
app.use(router) | |
app.mount('#app') |
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
import { createRouter, createWebHistory } from 'vue-router' | |
import Projects from '~/vue/app/projects/index' | |
import Dashboard from '~/vue/app/dashboard/index' | |
import ProjectDetail from '~/vue/app/projects/detail' | |
import ProjectCreate from '~/vue/app/projects/create' | |
const routes = [ | |
{ | |
path: '/', | |
redirect: '/projects', |
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 App\Console\Commands\Google; | |
use Google_Client; | |
use Google_Http_Batch; | |
use Google_Service_Docs_BatchUpdateDocumentRequest; | |
use Google_Service_Docs_ReplaceAllTextRequest; | |
use Google_Service_Docs_SubstringMatchCriteria; | |
use Google_Service_Docs; |
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
.alert { | |
border: 1px solid transparent; | |
border-radius: .25rem; | |
display: flex; | |
left: 0; | |
margin-bottom: 1rem; | |
padding: .75rem 1.25rem; | |
position: fixed; | |
position: relative; | |
right: 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
<script type="text/javascript"> | |
(function() { | |
var pageId = Date.now(); | |
var trackedAdwords = false; | |
var tracker = { | |
track: function () { | |
if (trackedAdwords) { | |
return; | |
} |
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 | |
/** | |
* Copy a transform for a file from source location to target location. | |
* | |
* @param AssetFileModel $file The assetFileModel that has the transform to copy. | |
* @param string $targetFolderPath The target folder path. | |
* @param AssetTransformIndexModel $source The source transform index data. | |
* @param AssetTransformIndexModel $target The destination transform index data. | |
* | |
* @return mixed |
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 TeamTNT\TNTSearch\Indexer; | |
use Exception; | |
use PDO; | |
use RecursiveDirectoryIterator; | |
use RecursiveIteratorIterator; | |
use TeamTNT\TNTSearch\Connectors\FileSystemConnector; | |
use TeamTNT\TNTSearch\Connectors\MySqlConnector; |
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
.MyModule { | |
// attributes (alphabetical) | |
background: blue; | |
// pseudo | |
&:before { | |
} | |
// tag children (alphabetical) | |
div { |
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
{ | |
"version": "1.0.0-*", | |
"buildOptions": { | |
"emitEntryPoint": true | |
}, | |
"dependencies": { | |
"Microsoft.NETCore.App": { | |
"type": "platform", | |
"version": "1.0.0" |
NewerOlder