This file contains hidden or 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
{"lastUpload":"2020-09-09T01:47:02.847Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
[Xdebug] | |
# Make sure to point to the correct php version for this local. | |
zend_extension = /opt/php/7.2.0/lib/php/extensions/no-debug-non-zts-20170718/xdebug.so | |
xdebug.remote_enable=1 | |
xdebug.remote_connect_back=On | |
xdebug.remote_port=9090 | |
xdebug.profiler_enable=0 | |
xdebug.remote_host=localhost | |
xdebug.remote_handler=dbgp | |
xdebug.remote_mode=req |
This file contains hidden or 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
# If using artisan tinker you need to pause the listener then start artisan and then restart the listener. | |
# When finished, you need to pause and restart as well. | |
#Set PhpStorm to listen on port 9090, and turn on the listener | |
[xdebug] | |
xdebug.remote_enable=1 | |
xdebug.remote_port=9090 | |
xdebug.idekey=PHPSTORM | |
xdebug.remote_host=localhost | |
xdebug.remote_autostart=on |
This file contains hidden or 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 | |
/** | |
* Plugin Name: CHB Meta Box test | |
* Plugin URI: http://www.chrispian.com | |
* Description: Just testing out OOP Meta Boxes. | |
* Version: 0.0.1 | |
* Requires at least: 5.3 | |
* Requires PHP: 7.2 | |
* Author: Chrispian H. Burks | |
* Author URI: http://chrispian.com |
This file contains hidden or 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
`add_filter( 'gform_tabindex', '__return_false' );` | |
// Disable automatic tab indexing as it often causes problems - via Jeffrey @ WebDevStudios |
This file contains hidden or 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 | |
function custom_remove_post_row_actions( $actions ) { | |
// You could check the post type or users here to only do this under certain conditions. | |
unset( $actions['trash'] ); | |
return $actions; | |
} | |
add_filter( 'post_row_actions', 'custom_remove_post_row_actions', 10, 1 ); |
This file contains hidden or 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
The error is for resource/views/layouts/guest.blade.php:14 require and here are the contents. It's the @vite line | |
<!DOCTYPE html> | |
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> | |
<head> | |
<meta charset="utf-8"> |
This file contains hidden or 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\Filament\Resources\Trip; | |
//... | |
class PlaceResource extends Resource | |
{ | |
public static function table(Table $table): Table | |
{ | |
return $table |
This file contains hidden or 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\Forms\Components; | |
use Filament\Forms\Components\Group; | |
class BlockSettings extends Group | |
{ | |
protected string $view = 'filament.forms.components.block-settings'; |
This file contains hidden or 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
<x-filament::section | |
collapsible | |
collapsed | |
persist-collapsed | |
compact | |
id="case-log-widgets" | |
col-span-3 | |
> | |
<x-slot name="heading"> | |
Stats |