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
Installing ImageMagick | |
In this topic you will find the basic steps you need to take in order to make sure all KTML image editing features are working fine. This includes the installation of the ImageMagick library for both Unix and Windows systems. | |
Note: The steps depicted in this topic are accurate and available at the time of this writing. For up-to-date instructions on how to install the latest ImageMagick version available, check out the product's installation instructions - online, or in the downloaded package. | |
Installing ImageMagick on Windows-based systems | |
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
function cleanString($text) { | |
$utf8 = array( | |
'/[áàâãªä]/u' => 'a', | |
'/[ÁÀÂÃÄ]/u' => 'A', | |
'/[ÍÌÎÏ]/u' => 'I', | |
'/[íìîï]/u' => 'i', | |
'/[éèêë]/u' => 'e', | |
'/[ÉÈÊË]/u' => 'E', |
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
namespace App\Http\Middleware; | |
use Closure; | |
use Illuminate\Support\Facades\Auth; | |
class Role | |
{ | |
/** | |
* Handle an incoming request. | |
* |
NewerOlder