We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cd00ae commit 2f040e1Copy full SHA for 2f040e1
2 files changed
application/libraries/Grocery_CRUD.php
@@ -4054,6 +4054,13 @@ public function unset_clone()
4054
return $this;
4055
}
4056
4057
+ public function set_clone()
4058
+ {
4059
+ $this->unset_clone = false;
4060
+
4061
+ return $this;
4062
+ }
4063
4064
/**
4065
*
4066
* The fields that user will see on add/edit
assets/grocery_crud/themes/flexigrid/views/list.php
@@ -15,7 +15,7 @@
15
</div>
16
</th>
17
<?php }?>
18
- <?php if(!$unset_delete || !$unset_edit || !$unset_read || !empty($actions)){?>
+ <?php if(!$unset_delete || !$unset_edit || !$unset_read || !$unset_clone || !empty($actions)){?>
19
<th align="left" abbr="tools" axis="col1" class="" width='20%'>
20
<div class="text-right">
21
<?php echo $this->l('list_actions'); ?>
0 commit comments