From 4682a1dad897896c7914052aeefc16515164ce70 Mon Sep 17 00:00:00 2001 From: ADmad Date: Wed, 2 Oct 2024 23:51:45 +0530 Subject: [PATCH] Try fixing formatting in rst file --- docs/examples.rst | 41 +++++++++++++---------------------------- 1 file changed, 13 insertions(+), 28 deletions(-) diff --git a/docs/examples.rst b/docs/examples.rst index 62590a2..e73d79c 100644 --- a/docs/examples.rst +++ b/docs/examples.rst @@ -18,7 +18,6 @@ Basic example .. code-block:: php - .. code-block:: php - - Form->create($user, ['type' => 'file']); ?> - Form->control('username'); ?> - Form->control('photo', ['type' => 'file']); ?> - Form->end(); ?> + echo $this->Form->create($user, ['type' => 'file']); + echo $this->Form->control('username'); + echo $this->Form->control('photo', ['type' => 'file']); + echo $this->Form->end(); Note: If you used *bake* to generate MVC structure after creating the users table, you will need to remove the default scalar validation @@ -107,7 +103,6 @@ In order to prevent such situations, a field must be added to store the director .. code-block:: php - .. code-block:: php - - Form->create($user, ['type' => 'file']); ?> - Form->control('username'); ?> - Form->control('photo', ['type' => 'file']); ?> - Form->end(); ?> + echo $this->Form->create($user, ['type' => 'file']); + echo $this->Form->control('username'); + echo $this->Form->control('photo', ['type' => 'file']); + echo $this->Form->end(); Using such a setup, the behavior will use the stored path value instead of generating the path dynamically when deleting files. @@ -187,7 +179,6 @@ This example uses the Imagine library. It can be installed through composer: .. code-block:: php - .. code-block:: php - - Form->create($user, ['type' => 'file']); ?> - Form->control('username'); ?> - Form->control('photo', ['type' => 'file']); ?> - Form->end(); ?> + + echo $this->Form->create($user, ['type' => 'file']); + echo $this->Form->control('username'); + echo $this->Form->control('photo', ['type' => 'file']); + echo $this->Form->end(); Displaying links to files in your view -------------------------------------- @@ -276,7 +265,6 @@ This example uses the `default behaviour configuration `__ u .. code-block:: php - `__ u // You could use the following to create a link to // the image (with default settings in place of course) echo $this->Html->link('../files/example/image/' . $entity->photo_dir . '/' . $entity->photo); - ?> For Windows systems you'll have to build a workaround as Windows systems use backslashes as directory separator which isn't useable in URLs. .. code-block:: php - Html->link('../files/example/image/' . str_replace('\', '/', $entity->photo_dir) . '/' . $entity->photo); - ?> You can optionally create a custom helper to handle url generation, or contain that within your entity. As it is impossible to detect what the actual url for a file should be, such functionality will *never* be made available via this plugin.