Re: [Phpmyadmin-devel] PDF export - ID: 1376650 -- need help

Hi Marc , I am really sorry for the delay. I had my lab exams going on. I did compare the libraries/export/pdf.php with libraries/export/htmlword.php. I have written the function PMA_exportStructure() for pdf export and its working, printing the structure. But the problem is that the "pdf_structure_or_data" option value is "data". It has to be changed to "data_and_structure".I inspected the source code, this is the problematic code
<input type="hidden" value="data" name="pdf_structure_or_data">.
So i am trying to pin point the script where the format specific options are set. Any help would be appreciated.
-- Selvam Palanimalai Website <http://selvam.e-caffeine.net/> || LinkedIN<http://www.linkedin.com/profile/view?id=109815979> Department of EEE | Department of Biology, Birla Institute of Technology and Sciences

Le 2012-03-26 18:42, SELVAM P a écrit :
Hi Marc ,
I am really sorry for the delay. I had my lab exams going on. I did compare the libraries/export/pdf.php with libraries/export/htmlword.php. I have written the function PMA_exportStructure() for pdf export and its working, printing the structure. But the problem is that the "pdf_structure_or_data" option value is "data". It has to be changed to "data_and_structure".I inspected the source code, this is the problematic code
<input type="hidden" value="data" name="pdf_structure_or_data">.
So i am trying to pin point the script where the format specific options are set. Any help would be appreciated.
The default values are set in libraries/config.default.php. If you are on Linux, you can find this information with the following command: grep pdf_structure_or_data `find . -name '*.php'` -- Marc Delisle http://infomarc.info

On 27/03/12 15:16, Marc Delisle wrote:
Le 2012-03-26 18:42, SELVAM P a écrit :
Hi Marc ,
I am really sorry for the delay. I had my lab exams going on. I did compare the libraries/export/pdf.php with libraries/export/htmlword.php. I have written the function PMA_exportStructure() for pdf export and its working, printing the structure. But the problem is that the "pdf_structure_or_data" option value is "data". It has to be changed to "data_and_structure".I inspected the source code, this is the problematic code
<input type="hidden" value="data" name="pdf_structure_or_data">.
So i am trying to pin point the script where the format specific options are set. Any help would be appreciated.
The default values are set in libraries/config.default.php.
If you are on Linux, you can find this information with the following command:
grep pdf_structure_or_data `find . -name '*.php'`
Kinda off topic, but the below will run faster: grep -r pdf_structure_or_data *.php Bye, Rouslan

On 27/03/12 20:10, Rouslan Placella wrote:
On 27/03/12 15:16, Marc Delisle wrote:
Le 2012-03-26 18:42, SELVAM P a écrit :
Hi Marc ,
I am really sorry for the delay. I had my lab exams going on. I did compare the libraries/export/pdf.php with libraries/export/htmlword.php. I have written the function PMA_exportStructure() for pdf export and its working, printing the structure. But the problem is that the "pdf_structure_or_data" option value is "data". It has to be changed to "data_and_structure".I inspected the source code, this is the problematic code
<input type="hidden" value="data" name="pdf_structure_or_data">.
So i am trying to pin point the script where the format specific options are set. Any help would be appreciated.
The default values are set in libraries/config.default.php.
If you are on Linux, you can find this information with the following command:
grep pdf_structure_or_data `find . -name '*.php'`
Kinda off topic, but the below will run faster:
grep -r pdf_structure_or_data *.php
Actually, nevermind, it only works as: grep -r pdf_structure_or_data * But then it's slower :S Bye, Rouslan

Hi Dne Tue, 27 Mar 2012 20:14:33 +0100 Rouslan Placella <rouslan@placella.com> napsal(a):
Actually, nevermind, it only works as:
grep -r pdf_structure_or_data *
As you most likely doing this in Git checout, "git grep pdf_structure_or_data" might be even better choice. -- Michal Čihař | http://cihar.com | http://blog.cihar.com
participants (4)
-
Marc Delisle
-
Michal Čihař
-
Rouslan Placella
-
SELVAM P