3.插件中常见的工作流程>>>Common workflow in plugins

  • 上次创建时间 Feb 20, 2025
  • 38
0 0
访问CodeIgniter的官方文档以获取高级信息。
Visit the official CodeIgniter documentation for advanced information.
路线:指定从主应用程序检测插件的路线。
Route: Specify the route to detect the plugin from the main application.
<?php
namespace Config;

$routes = Services::routes();

$routes->get('my_plugin', 'My_Plugin::index', ['namespace' => 'My_Plugin\Controllers']);
$routes->get('my_plugin/(:any)', 'My_Plugin::$1', ['namespace' => 'My_Plugin\Controllers']);
$routes->post('my_plugin/(:any)', 'My_Plugin::$1', ['namespace' => 'My_Plugin\Controllers']); //will be required if any data need to be posted
控制器:
<?php

namespace My_Plugin\Controllers;

use App\Controllers\Security_Controller; //access main app's controller

class My_Plugin extends Security_Controller {
    //your methods
}

模型:
<?php

namespace My_Plugin\Controllers;

use App\Models\Crud_model; //access main app's models

class My_Plugin_Model extends Crud_model {
    //your methods
}  
调用模型:
$My_Plugin_Model = new \My_Plugin\Models\My_Plugin_Model();
库:
<?php

namespace My_Plugin\Libraries;

class My_Plugin_Library {
    //your methods
}
调用库:
$my_plugin_library = 新\My_Plugin\Libraries\My_Plugin_Library();
语言:遵循相同的语言目录设计。如 My_Plugin/Language/english/custom_lang.php 和 default_lang.php。记得使用语言键添加唯一的前缀。这里有一个例子:
<?php

$lang["my_plugin_show_staff_members"] = "Show staff members";
浏览数:
$view_data['foo'] = "bar";

//$this->template->rander() function will show the view with left menu and topbar by default.
return $this->template->rander('My_Plugin\Views\folder\index', $view_data);

//$this->template->view() function will show only the view, but here you'll get the login user's info as $login_user variable if any login user exists
return $this->template->view('My_Plugin\Views\folder\index', $view_data);

//default view() function of CI
return view('My_Plugin\Views\folder\index', $view_data);
助手:在 My_Plugin/Helpers 文件夹中添加一个助手文件(如 my_plugin_general_helper.php)并像这样调用它:
helper("my_plugin_general_helper");
ThirdParty:加载第三方文件,如下所示:
 require_once(PLUGINPATH . "My_Plugin/ThirdParty/library_folder/vendor/autoload.php");

正在加载资产:
  <link rel='stylesheet' type='text/css' href='" . base_url(PLUGIN_URL_PATH . "My_Plugin/assets/css/my_plugin_styles.css") . "' />

文件管理:遵循与我们现在进行文件管理相同的工作流程。只需将目标目录更改为:

  PLUGIN_URL_PATH. "My_Plugin/files/my_plugin_files/"

意见: 38

最近的文章

  • 添加自定义字段>>>Add custom fields
    26
  • 设置通知>>>Set up notifications
    0
  • 更改应用主题>>>Change the app theme
    27
  • 自定义左侧菜单>>>Customize the left menu
    27
  • 自定义仪表板>>>Customize dashboards
    23

热门文章

  • CRM插件开发说明文档
    1.PASS CRM插件介绍>>>Plugin Introduction
    68
  • CRM插件开发说明文档
    3.插件中常见的工作流程>>>Common workflow...
    38
  • CRM插件开发说明文档
    6.插件最佳实践>>>Plugin Best Practices
    33
  • 更改应用主题>>>Change the app theme
    27
  • 自定义左侧菜单>>>Customize the left menu
    27