ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
trait.ilObjFileSecureString.php File Reference

Go to the source code of this file.

Functions

 extractSuffixFromFilename (string $filename)
 
 stripSuffix (string $title, ?string $suffix=null)
 
 ensureSuffix (string $title, ?string $suffix=null)
 
 ensureSuffixInBrackets (string $title, ?string $suffix=null)
 

Variables

trait ilObjFileSecureString
 Trait ilObjFileSecureString. More...
 

Function Documentation

◆ ensureSuffix()

ensureSuffix ( string  $title,
?string  $suffix = null 
)
protected

Definition at line 48 of file trait.ilObjFileSecureString.php.

References extractSuffixFromFilename(), and stripSuffix().

Referenced by ilObjFile\appendSuffixToTitle(), ilObjFile\beforeUpdate(), ilObjFileInfo\getHeaderTitle(), ilObjFile\handleChangedObjectTitle(), ilFileVersionFormGUI\saveObject(), and ilObjFile\updateObjectFromRevision().

48  : string
49  {
50  $title = $this->stripSuffix($title, $suffix);
51  $suffix = $suffix ?? $this->extractSuffixFromFilename($title);
52 
53  if ($suffix !== null && strrpos($title, "." . $suffix) === false) {
54  $title .= "." . $suffix;
55  }
56 
57  return $this->secure(rtrim($title, "."));
58  }
extractSuffixFromFilename(string $filename)
stripSuffix(string $title, ?string $suffix=null)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ensureSuffixInBrackets()

ensureSuffixInBrackets ( string  $title,
?string  $suffix = null 
)
protected

Definition at line 60 of file trait.ilObjFileSecureString.php.

References extractSuffixFromFilename(), and stripSuffix().

60  : string
61  {
62  $title = $this->stripSuffix($title, $suffix);
63  $suffix = $suffix ?? $this->extractSuffixFromFilename($title);
64 
65  if ($suffix !== null && strrpos($title, "." . $suffix) === false) {
66  $title .= " (" . $suffix . ")";
67  }
68 
69  return $this->secure($title);
70  }
extractSuffixFromFilename(string $filename)
stripSuffix(string $title, ?string $suffix=null)
+ Here is the call graph for this function:

◆ extractSuffixFromFilename()

extractSuffixFromFilename ( string  $filename)
protected

Definition at line 29 of file trait.ilObjFileSecureString.php.

Referenced by ilObjFile\appendSuffixToTitle(), ensureSuffix(), ensureSuffixInBrackets(), stripSuffix(), and ilObjFile\updateObjectFromRevision().

29  : string
30  {
31  if (!preg_match('/^(.+?)(?<!\s)\.([^.]*$|$)/', $filename, $matches)) {
32  return '';
33  }
34  return $this->secure($matches[2]);
35  }
$filename
Definition: buildRTE.php:78
+ Here is the caller graph for this function:

◆ stripSuffix()

stripSuffix ( string  $title,
?string  $suffix = null 
)
protected

Definition at line 37 of file trait.ilObjFileSecureString.php.

References extractSuffixFromFilename().

Referenced by ensureSuffix(), ensureSuffixInBrackets(), and ilObjFileInfo\getListTitle().

37  : string
38  {
39  $suffix = $suffix ?? $this->extractSuffixFromFilename($title);
40 
41  if ($suffix !== null && ($length = strrpos($title, "." . $suffix)) > 0) {
42  $title = substr($title, 0, $length);
43  }
44 
45  return $this->secure($title);
46  }
extractSuffixFromFilename(string $filename)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Variable Documentation

◆ ilObjFileSecureString

trait ilObjFileSecureString
Initial value:

Trait ilObjFileSecureString.

Author
Fabian Schmid fabia.nosp@m.n@sr.nosp@m..solu.nosp@m.tion.nosp@m.s

Definition at line 26 of file trait.ilObjFileSecureString.php.