{"id":148776,"date":"2018-11-01T14:03:51","date_gmt":"2018-11-01T14:03:51","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=148776"},"modified":"2021-07-16T12:20:36","modified_gmt":"2021-07-16T12:20:36","slug":"modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/","title":{"rendered":"Modify Field List of Symfony Admin Controller Page in Prestashop 1.7"},"content":{"rendered":"\n<p>In this blog, we are going to learn how to modify fields list of Admin Controller Symfony&nbsp;page in Prestashop.<\/p>\n\n\n\n<p>To display the custom field in Prestashop admin&nbsp;render list.<\/p>\n\n\n\n<p>Check this link&nbsp;<a href=\"https:\/\/webkul.com\/blog\/how-to-modify-fields-list-in-prestashop\/\">https:\/\/webkul.com\/blog\/how-to-modify-fields-list-in-prestashop\/<\/a><\/p>\n\n\n\n<p>On Symfony Admin controller pages the render list is&nbsp;created with the help of twig.<\/p>\n\n\n\n<p>Let\u2019s understand the entire process with the help of taking an example of &nbsp;AdminProductsController.<\/p>\n\n\n\n<p>To check the called function of admin controller list, open the Symfony&nbsp;debug mode.<\/p>\n\n\n\n<p>In Symfony&nbsp;debug mode all the details related to the page are provided. Check the image given below.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1299\" height=\"640\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png\" alt=\"Admin product list debug\" class=\"wp-image-150281\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png 1299w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1-250x123.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1-300x148.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1-768x378.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1-1200x591.png 1200w\" sizes=\"(max-width: 1299px) 100vw, 1299px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>In the Admin Product controller, the&nbsp;catalogAction method is called during list render.<\/p>\n\n\n\n<p>The product&nbsp;details are fetched&nbsp;through&nbsp;the ProductDataProvider class and assigned to the twig template file in ProductController.<\/p>\n\n\n\n<p>ProductController File Path<strong>:- {PrestaShop_root_folder}\/src\/PrestaShopBundle\/Controller\/Admin<\/strong>.<br>Twig template file path:-&nbsp;<strong>src\/PrestaShopBundle\/Resources\/views\/Admin<\/strong><\/p>\n\n\n\n<p><strong>Now we will see how we can add our custom data column in the PrestaShop&nbsp;admin product list?<\/strong><\/p>\n\n\n\n<p><strong>Step 1<\/strong>:- Register action{controller_name}ListingFieldsModifier hook in your module<\/p>\n\n\n\n<p>Eg:- Register actionAdminProductsListingFieldsModifier hook in your module.<\/p>\n\n\n\n<p><strong>Step 2<\/strong>:- Define the hook function as in the given example.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:php\">public function hookActionAdminProductsListingFieldsModifier($list)\n{\n    if (isset($list['sql_select'])) {\n        $list['sql_select']['type'] = array(\n            \"table\"=&gt;\"ad\",\n            \"field\"=&gt;\"type\",\n            \"filtering\"=&gt;\" %s \"\n        );\n    }\n    if (isset($list['sql_table'])) {\n        $list['sql_table']['ad'] = array(\n            \"table\"=&gt;\"test_table\",\n            \"join\"=&gt;\"LEFT JOIN\",\n            \"on\"=&gt;\"ad.`id_product` = p.`id_product`\"\n        );\n    }\n}\n<\/pre>\n\n\n\n<p>As in the above process, we have combined our module table with Prestashop&nbsp;table.<\/p>\n\n\n\n<p>Now when the data will be fetched our data will automatically get added to it and assign to the product twig template file.<\/p>\n\n\n\n<p><strong>Now the question arises how we will display the field in the list?<\/strong><\/p>\n\n\n\n<p>We can only display our field in the list by overriding the twig template file.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Note:: We can only override the twig file from Prestashop 1.7.3.0 above version.<\/strong><\/h4>\n\n\n\n<h5 class=\"wp-block-heading\">Steps to override the template&nbsp;file.<\/h5>\n\n\n\n<p><strong>Identify the template to override<\/strong><\/p>\n\n\n\n<p>First, we need to identify which Twig template is rendered.<\/p>\n\n\n\n<p>We can check this by using the&nbsp;<em>Debug mode of&nbsp;<\/em>Symfony Debug toolbar. With this, we can see the list of Twig templates used to render the page.<\/p>\n\n\n\n<p>In our case, we are interested in the product list template.<\/p>\n\n\n\n<p>So we will be overriding <strong>list.html.twig and products_table.html.twig&nbsp;<\/strong>inside<strong>&nbsp;PrestaShop\/Admin\/Product\/CatalogPage\/Lists <\/strong>directory<\/p>\n\n\n\n<p><strong>Now let&#8217;s have a look at how we can override it?<\/strong><\/p>\n\n\n\n<p>As we have found the template path&nbsp;<strong>PrestaShop\/Admin\/Product\/CatalogPage\/Lists<\/strong>&nbsp;folder, we need to create the same path inside the module <strong>view<\/strong> folder.<\/p>\n\n\n\n<p>Eg:- <strong>{module_name}\/views\/PrestaShop\/Admin\/Product\/CatalogPage\/Lists<\/strong><\/p>\n\n\n\n<p>Now create a list.html.twig file and write the code according to your requirement.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:html\"> &lt;tbody\n    {% if activate_drag_and_drop and has_category_filter %}class=\"sortable\"{% endif %}\n    last_sql=\"{{ last_sql_query|escape('html_attr') }}\"\n &gt;\n    {% for product in products %}\n    {% block product_catalog_form_table_row %}\n    &lt;tr data-uniturl=\"{{ product.unit_action_url|default('#') }}\" data-product-id=\"{{ product.id_product }}\"&gt;\n        &lt;td class=\"checkbox-column form-group\"&gt;\n            &lt;div class=\"md-checkbox md-checkbox-inline\"&gt;\n                &lt;label&gt;\n                    &lt;input type=\"checkbox\" id=\"bulk_action_selected_products-{{ product.id_product }}\" name=\"bulk_action_selected_products[]\" value=\"{{ product.id_product }}\"&gt;\n                    &lt;i class=\"md-checkbox-control\"&gt;&lt;\/i&gt;\n                &lt;\/label&gt;\n            &lt;\/div&gt;\n        &lt;\/td&gt;\n        ...\n        ...\n        &lt;td&gt;\n            {% if product.type == 1 %}\n                &lt;span class=\"btn btn-primary\"&gt;Sample Type&lt;\/span&gt;\n            {% else %}\n                --\n            {%endif%}\n        &lt;\/td&gt;\n        ...\n        ...\n    &lt;\/tr&gt;\n    {% endblock %}\n {% endfor %}\n<\/pre>\n\n\n\n<p>Similarly, we will override the&nbsp;<strong>products_table.html.twig <\/strong>to add the heading of the column field.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1299\" height=\"638\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony2-1.png\" alt=\"Admin Product list\" class=\"wp-image-150283\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony2-1.png 1299w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony2-1-250x123.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony2-1-300x147.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony2-1-768x377.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony2-1-1200x589.png 1200w\" sizes=\"(max-width: 1299px) 100vw, 1299px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>This is how we can display our custom field in the Symfony admin controller pages.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we are going to learn how to modify fields list of Admin Controller Symfony&nbsp;page in Prestashop. To display the custom field in Prestashop admin&nbsp;render list. Check this link&nbsp;https:\/\/webkul.com\/blog\/how-to-modify-fields-list-in-prestashop\/ On Symfony Admin controller pages the render list is&nbsp;created with the help of twig. Let\u2019s understand the entire process with the help of taking <a href=\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":157,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[209],"tags":[],"class_list":["post-148776","post","type-post","status-publish","format-standard","hentry","category-prestashop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>prestashop modify field list of symfony admin controller page<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"prestashop modify field list of symfony admin controller page\" \/>\n<meta property=\"og:description\" content=\"In this blog, we are going to learn how to modify fields list of Admin Controller Symfony&nbsp;page in Prestashop. To display the custom field in Prestashop admin&nbsp;render list. Check this link&nbsp;https:\/\/webkul.com\/blog\/how-to-modify-fields-list-in-prestashop\/ On Symfony Admin controller pages the render list is&nbsp;created with the help of twig. Let\u2019s understand the entire process with the help of taking [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-11-01T14:03:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-16T12:20:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png\" \/>\n<meta name=\"author\" content=\"Sanjay Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sanjay Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/\"},\"author\":{\"name\":\"Sanjay Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/edd854ea04c484dc61b4c592c2404241\"},\"headline\":\"Modify Field List of Symfony Admin Controller Page in Prestashop 1.7\",\"datePublished\":\"2018-11-01T14:03:51+00:00\",\"dateModified\":\"2021-07-16T12:20:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/\"},\"wordCount\":482,\"commentCount\":7,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png\",\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/\",\"url\":\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/\",\"name\":\"prestashop modify field list of symfony admin controller page\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png\",\"datePublished\":\"2018-11-01T14:03:51+00:00\",\"dateModified\":\"2021-07-16T12:20:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png\",\"width\":1299,\"height\":640},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Modify Field List of Symfony Admin Controller Page in Prestashop 1.7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/edd854ea04c484dc61b4c592c2404241\",\"name\":\"Sanjay Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/bf62e11271d61c96204bafe9bb751ec3bce02de8a1a8e7df004725fef0335ab5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/bf62e11271d61c96204bafe9bb751ec3bce02de8a1a8e7df004725fef0335ab5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Sanjay Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/sanjay-singhchauhan871\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"prestashop modify field list of symfony admin controller page","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/","og_locale":"en_US","og_type":"article","og_title":"prestashop modify field list of symfony admin controller page","og_description":"In this blog, we are going to learn how to modify fields list of Admin Controller Symfony&nbsp;page in Prestashop. To display the custom field in Prestashop admin&nbsp;render list. Check this link&nbsp;https:\/\/webkul.com\/blog\/how-to-modify-fields-list-in-prestashop\/ On Symfony Admin controller pages the render list is&nbsp;created with the help of twig. Let\u2019s understand the entire process with the help of taking [...]","og_url":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-11-01T14:03:51+00:00","article_modified_time":"2021-07-16T12:20:36+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png","type":"","width":"","height":""}],"author":"Sanjay Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Sanjay Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/"},"author":{"name":"Sanjay Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/edd854ea04c484dc61b4c592c2404241"},"headline":"Modify Field List of Symfony Admin Controller Page in Prestashop 1.7","datePublished":"2018-11-01T14:03:51+00:00","dateModified":"2021-07-16T12:20:36+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/"},"wordCount":482,"commentCount":7,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png","articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/","url":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/","name":"prestashop modify field list of symfony admin controller page","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png","datePublished":"2018-11-01T14:03:51+00:00","dateModified":"2021-07-16T12:20:36+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/11\/symfony1.png","width":1299,"height":640},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/modify-field-list-of-symfony-admin-controller-page-in-prestashop-1-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Modify Field List of Symfony Admin Controller Page in Prestashop 1.7"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/edd854ea04c484dc61b4c592c2404241","name":"Sanjay Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/bf62e11271d61c96204bafe9bb751ec3bce02de8a1a8e7df004725fef0335ab5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bf62e11271d61c96204bafe9bb751ec3bce02de8a1a8e7df004725fef0335ab5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Sanjay Singh"},"url":"https:\/\/webkul.com\/blog\/author\/sanjay-singhchauhan871\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/148776","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/157"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=148776"}],"version-history":[{"count":34,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/148776\/revisions"}],"predecessor-version":[{"id":296541,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/148776\/revisions\/296541"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=148776"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=148776"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=148776"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}