Ανάπτυξη ιστοτόπου σε dokuwiki: Διαφορά μεταξύ των αναθεωρήσεων

Περιεχόμενο που διαγράφηκε Περιεχόμενο που προστέθηκε
Chomwitt (συζήτηση | συνεισφορές)
Chomwitt (συζήτηση | συνεισφορές)
Χωρίς σύνοψη επεξεργασίας
Γραμμή 6:
υλοποιούν αυτή τη λειτουργικότητα.
 
Η προσέγγισή μου είναι
Η βασική λειτουργικότητα που προσφέρει είναι:
1) να καταλάβουμε ποιά είναι τα κύρια χαρακτηριστικά και να προσπαθήσουμε
 
να αναγνωρίσουμε τα αρχεία που τα υλοποιούν
{{Primarysources|article|date=March 2008}}{{citecheck|article|date=March 2008}}{{citation style|article|date=March 2008}}
{{Infobox_Software
| name = DokuWiki
| screenshot = [[Image:Dokuwiki logo.png]]
| caption = DokuWiki's logo.
| developer = Andreas Gohr
| latest_release_version = dokuwiki-2008-05-04
| latest_development_release = N/A
| latest_release_date = [[2008-05-04]]
| operating_system = [[Cross-platform]]
| language= [http://wiki.splitbrain.org/wiki:translation Multilingual] (40)
| genre = [[Wiki]]
| license = [[GNU General Public License| GPL 2]]
| website = [http://wiki.splitbrain.org/wiki:dokuwiki wiki.splitbrain.org]
}}
 
 
 
Γραμμή 48 ⟶ 34 :
 
; [[Πλήρης αναζήτηση λέξης]] : Το DokuWiki έχει ένα ενσωματωμένη αναζήτη ''indexed search'' με την οποία ο χρήστης μπορεί να ψάξει για λέξεις στο βίκι του.
 
== Μελέτη κώδικα ==
 
Θα χρειαστεί γνώση php,css,html .
 
Πχ πρέπει να γνωρίζεις τις '''μαγικές PHP σταθερές'''.
Name Description
*__LINE__ The current line number of the file.
*__FILE__ The full path and filename of the file. If used inside an include, the name of the included file is returned. Since PHP 4.0.2, __FILE__ always contains an absolute path with symlinks resolved whereas in older versions it contained relative path under some circumstances.
*__DIR__ The directory of the file. If used inside an include, the directory of the included file is returned. This is equivalent to dirname(__FILE__). This directory name does not have a trailing slash unless it is the root directory. (Added in PHP 5.3.0.)
*__FUNCTION__ The function name. (Added in PHP 4.3.0) As of PHP 5 this constant returns the function name as it was declared (case-sensitive). In PHP 4 its value is always lowercased.
*__CLASS__ The class name. (Added in PHP 4.3.0) As of PHP 5 this constant returns the class name as it was declared (case-sensitive). In PHP 4 its value is always lowercased.
*__METHOD__ The class method name. (Added in PHP 5.0.0) The method name is returned as it was declared (case-sensitive).
*__NAMESPACE__ The name of the current namespace (case-sensitive). This constant is defined in compile-time