Use Laravel-filemanager without editor - laravel

I am planning to use the Laravel-filemanager laravel-filemanager in my project. In the documentation it is described to integrate with the CKEditor. But I want to use this file manager separately for a input field.

Found the library which i was searching for. UniSharp maintain a package https://github.com/UniSharp/laravel-filemanager which is a fork of tsawler/laravel-filemanager. Do not use the original package developed by tsawler, i does not maintain the package any more and not responsible enough.

It is really easy with Laravel Simple File Manager.
GitHub: https://github.com/haruncpi/laravel-simple-filemanager
Example without editor
<input id="profile">
<button type="button" onclick="filemanager.selectFile('profile')">Pick</button>
You can use it for selecting the batch files/images without using an HTML editor. Read the full documentation of Laravel Simple Filemanager

Easy
Code Editor
File operation(copy,rename,upload,cut,delete,move)
zip
unzip
artisan terminal
dark/light theme
GitHub: https://github.com/srustamov/laravel-file-manager

Related

How to customize html in Aimeos?

First time using aimeos and I'm having difficulty locating the file with the html code.How do I access the files? e.g, using this demo link https://laravel.demo.aimeos.org/default/en/EUR where do I find the html code responsiveble for displaying the navbar?
You can do this through the settings provided by laravel aimeos: https://aimeos.org/docs/latest/laravel/customize/
You can also create a theme extension (this is the recommended option) and make changes according to your needs.
You can find the documentation at this link: https://aimeos.org/docs/latest/laravel/themes/
Also, you can use the following tool to generate a theme extension: https://aimeos.org/extensions
This way you will be able to customize all the html, css, javascript, php without losing changes when you upgrade the laravel aimeos package.
Regards,

How to replace actions with html icon on backpackforlaravel

I have created this app with backpack for laravel where the table created by using backpack:build
I need to replace the word actions with an icon from line-awesome for example toolbox
<i class="las la-toolbox"></i>
I tried to add the HTML on the language file
resources/lang/vendor/backpack/en/crud.php but it's not working
In Backpack 4.0 or 4.1, you can change the default buttons any way you see fit by publishing the view file, and making changes to the published file. If Backpack sees a file with the same name & path inside your project, it'll use that one instead of the one in the package.
For example:
if this file exists: resources/views/vendor/backpack/crud/buttons/delete.blade.php
then Backpack will load that one, instead of the normal vendor/backpack/crud/src/resources/views/crud/buttons/delete.blade.php
For reference, you can find all default Backpack buttons here, in the Backpack/CRUD package. Overwriting one is just a matter of creating a file with the same name in the directory I mentioned above.
You can publish a blade file even easier by using this command:
php artisan backpack:publish crud/buttons/delete
Then make any changes you want to it, like removing the text to only leave the icon.
In Backpack 4.2 it is possible that an easier solution will be implemented for this particular need. See this PR for more information. Backpack 4.2 will be released in spring 2021.

Sublime text autocompletion for Laravel

Are there any plugins available to get Laravel auto completion and Laravel Blade template beautification in Sublime Text 3?
I have googled it, didn't find the right one for Laravel auto complete and not even one plugin that beautify the Laravel blade template.
There is dev4dev/blade-snippets. You can install it via Package Manager:
After installing you will be able to autocomplete Blade snippets by pressing Tab.
Some examples:
List of all snippets you can find in the project's repo: https://github.com/dev4dev/blade-snippets/tree/master/snippets
First install Sublime Code Intel plugin and then install Laravel Ide Helper.
By default Sublime Code Intel will let you autocomplete the code you write in your project e.g. extra classes, laravel's namespaces, etc but by default it will not autocomplete laravel's facades that's why Laravel Ide Helper comes to the rescure.

How to use hooks in CS-Cart for overriding footer.tpl file

I am new to cs-cart and
I am trying to use hooks in cs-cart. I had gone through some cs-cart website but not getting proper answer. Suppose if i want to override footer.tpl file with new content then how can i do it using hooks. Just tell me the steps what code to write in index.tpl file and where to keep new footer.tpl file.
I'd suggest you to check this brief guide: http://docs.cs-cart.com/hooks.
Assuming you're on a version 4.x.x:
You don't need to edit anything in index.tpl, just take note of the name of the hook you want to use (I suppose you want to use this one {hook name="index:footer"})
Write your new template and give it the name footer.[override/pre/post].tpl
Save this new .tpl file in themes/[your_theme_name]/templates/addons/my_changes/hooks/index (maybe you need to create such directories in your folders tree)
Make sure you have the "my changes" addon installed and active. You can check it through your admin area of the store.
And that's it, it should work.
Notes:
I've seen no standard "footer.tpl" file in version 4.x.x., so the above instructions work, but they only append content at the end of the page. Customization of such page area can be done via the layout and theme editor on the admin area of the store.
The naming algorithm mentioned on the documentation of cs-cart is for
version 3.x.x. Since version 4.x.x. the folders names have varied.
You should replace skins/[skin name]/[admin|customer] for
design/themes/[your_theme_name]/templates

Add new project as an Article in joomla 1.5

I have a joomla project now currently running on.I need to add a separate php project to my joomla project as an article.here what i tried on article;
<?php
// You can place PHP like this
include "newprojectfolder/index.php?m=projects&uname=admin&pass=passwd";
?>
When I run stand alone new project on that joomla folder it works fine.
http://server/Joomlaproject/newprojectfolder/index.php?m=projects&uname=admin&pass=passwd
but when it using as a joomla article, it not shows anything...
how can i go through this?
thanks
Use Sourcerer to place any code anywhere. This module is very useful and solve TinyMCE editor problems!
view this:
Sourcerer
Joomla uses the TinyMCE editor which doesn't support writing pure PHP. Therefore you will need to download an extension that allows you to do so. Personally, if it's just PHP you want to use in an article, then I would recommend using PHP Direct

Resources