zoukankan      html  css  js  c++  java
  • drupal8 用户指南

    一句话概括 - 官方文档

    概念- Drupal是个内容管理系统哦

    • 那么,什么是内容管理系统?

      就是用户自己编辑自己的网站内容的一个系统。

    • 那么,什么是Drupal呢?

      Drupal是一个通过模块和主题的安装和卸载来实现CMS功能的CMS。
      Drupal要求PHP,其他的随意。

    • 那么为什么要用Drupal?
      安装时间长但是它维护起来简单
      它是通用的CMS
      自己写很牛逼,但是它是现成的CMS
      完全免费

    概念-模块

    • 什么是模块?
      模块继承了网站的特性,并且又增加了写功能。多余的模块请卸载。
      核心模块有:

      
       - 用户管理模块
       - 基本内容管理模块
       - 导航管理模块
       - 视图管理模块
       
      

    概念-主题

    • 什么是主题?
      主题决定了你的站点穿什么样子的衣服
      drupal核心有一些很好的主题
      drupal市场也有些好的主题
      你也可以自己定制

    概念-发行版

    • 什么是发行版?
      你写好的一个行业的网站,它就是一个发行版,可以直接用的。

    概念-数据类型

    • 什么是数据的类型们?
      你网站上的数据有很多形式。

      • 内容类型
        给访客看的内容,可编辑的。
      • 配置类型
        关于你网站的信息,持久储存的,短的内容。
      • 状态类型
        关于你站点的当前状态的临时性的数据信息。比如你的计划执行任务的最后一次执行时间。
      • session
        技术上也是状态类型,你懂得。

    概念-Drupal大工程

    • 什么是开源免费软件?
      社区支撑的,免费的。
    • 什么是Drupal大工程?
      就是一个大工程
    • 什么是Drupal协会?
      就是一个协会

    概念-Drupal许可

    • 什么是Drupal许可?
      你要想贡献模块,你得按照规定来

    All files (PHP, JavaScript, images, Flash, etc.) that are part of a project on Drupal.org have to be under GPL version 2 or later.
    All Drupal contributors retain copyright on their code, but agree to release it under the same license as Drupal.
    Drupal modules and themes are a derivative work of Drupal. If you distribute them, you must do so under the terms of GPL version 2 or later.
    All content on Drupal.org itself is copyrighted by its original contributors, and is licensed under the Creative Commons Attribution-ShareAlike license 2.0.
    Sample code on Drupal.org is also available under GPL version 2 or later.

    原文地址:https://segmentfault.com/a/1190000015627951

  • 相关阅读:
    Dynamics 365/CRM 实体设计技巧
    Dynamics 365/CRM 保存之后触发onchange
    编写C#程序,计算去除最大值和最小值之后的平均值
    Dynamics 365 WebResourceUtility 工具更新
    No sandboxworker process or sandbox hosts are currently avaliable
    C#
    Dynamics CRM 365 and Azure Service Bus – Queue
    双for循环
    java switch 的练习
    java__if_else 的练习
  • 原文地址:https://www.cnblogs.com/lalalagq/p/9979903.html
Copyright © 2011-2022 走看看