Bart Wind
Bart Wind
` class GameCrudController extends AbstractCrudController { public static function getEntityFqcn(): string { return Game::class; } public function configureFields(string $pageName): iterable { return [ TextField::new('name'), IntegerField::new('min1'), IntegerField::new('max1'), IntegerField::new('min2'), IntegerField::new('max2'), TextEditorField::new('description'), ImageField::new('image'),...
its just code to read?
Hi, this version will work only with php 5.3? or with 5.3 and 5.3+ ????
Hi, are upload file type field by API working?? $fileb64 = base64_encode(file_get_contents('test.pdf')); $result = $client->call($sessionId, 'document.add', array( 'document' => array( 'document_name' => 'test api document file', 'name_doc' => 'title of...