PHP code example of tastyigniter / ti-ext-translate

1. Go to this page and download the library: Download tastyigniter/ti-ext-translate library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tastyigniter / ti-ext-translate example snippets


resolve('translator.localization')->setLocale('fr');

use Igniter\System\Models\Language;
use Livewire\Component;

class LocalePicker extends Component
{
    public function render()
    {
        return view('localepicker', [
            'locales' => Language::listSupported(),
            'activeLocale' => resolve('translator.localization')->getLocale(),
        ]);
    }

    public function onSwitchLocale($locale)
    {
        resolve('translator.localization')->setLocale($locale);

        return redirect()->back();
    }
}

use Igniter\Translate\Actions\TranslatableModel;
use Igniter\Flame\Database\Model;

class Category extends Model
{
    public array $implement = [TranslatableModel::class];

    public function translatable() {
        return ['name'];
    }
}

use Igniter\Cart\Models\Category;
use Igniter\Translate\Actions\TranslatableModel;

public function boot()
{
    Category::extend(function ($model) {
        $model->implement[] = TranslatableModel::class;
        $model->addDynamicMethod('translatable', function () {
            return ['name', 'description'];
        });
    });
}

$category = Category::find(1);
$category->name = 'Nom de la catégorie';
$category->save();

$category = Category::create([
    'name' => [
        'en' => 'Category Name',
        'fr' => 'Nom de la catégorie',
    ],
]);

resolve('translator.localization')->setLocale('fr');

$category = Category::find(1);
$category->name = 'Nom de la catégorie';
$category->save();

$category = Category::find(1);

$category->name = [
    'en' => 'Category Name',
    'fr' => 'Nom de la catégorie',
];

$category->save();

$category = Category::find(1);
echo $category->name;

$category = Category::find(1);

echo $category->getAttributeTranslatedValue('name', 'fr');

'my_field' => [
    'label' => 'Name',
    'type' => 'trltext',
],

'my_field' => [
    'label' => 'Description',
    'type' => 'trltextarea',
],

'my_field' => [
    'label' => 'Content',
    'type' => 'trlricheditor',
],

'my_field' => [
    'label' => 'Content',
    'type' => 'trlmarkdowneditor',
],

'my_field' => [
    'label' => 'Items',
    'type' => 'trlrepeater',
],
bash
php artisan igniter:up
blade
<div>
    <select wire:change="onSwitchLocale($event.target.value)">
        @foreach ($locales as $code => $name)
            <option value="{{ $code }}" {{ $code == $activeLocale ? 'selected' : '' }}>
                {{ $name }}
            </option>
        @endforeach
    </select>
</div>